//This JS is designed to toggle the link network at the bottom of the ads next / client sites
//It works with the JQuery library ( /jquery.js)

$(document).ready(function() {
    $("#switcher-trigger").click(function () {//sets click event on division id switcher trigger
      if ($("div#link-container").is(":hidden")) 
	  
	  $("div#link-container").slideDown("fast");
	 
	  //if #links is hidden slide down fast
      else $("div#link-container").slideUp("fast");//$("div#links").hide();//if #links is not hidden , hide
    });
	 $("#close-trigger").click(function () {//sets click event on division id close trigger
      if ($("div#link-container").is(":visible")) $("div#link-container").slideUp("fast");
	  

    });	    
	
});

$(document).ready(function() {
   

});
