document.write("<style type='text/css'>.hidden{display:none;}<\/style>");
$.metadata.setType("attr", "validate");
$(document).ready(function(){
// Droppy Start
    $(function() {
    $('#login_selector').droppy({speed: 300});
  	});
 // Fade effect
	$(".fade li, a.button").fadeTo("slow", 1); // This sets the opacity of the thumbs to fade down to 30% when the page loads
	$(".fade li, a.button").hover(function(){
	$(this).fadeTo("slow", .4); // This should set the opacity to 100% on hover
	},function(){
	$(this).fadeTo("slow", 1); // This should set the opacity back to 30% on mouseout
	});
				//Examples of Global Changes
				$.fn.colorbox.settings.bgOpacity = "0.9";

				//Examples of how to assign the ColorBox event to elements.
				$("a[title='Contact']").colorbox({fixedWidth:"700px",fixedHeight:"520px"});
				$("a[title='Terms of Use']").colorbox({fixedWidth:"700px",fixedHeight:"520px"});
				// $("a[title='Publisher Center General Terms and Conditions']").colorbox({fixedWidth:"700px",fixedHeight:"520px"});
				// $("a[title='Publisher Rules and Policies']").colorbox({fixedWidth:"700px",fixedHeight:"520px"});
				$("a[title='Privacy']").colorbox({fixedWidth:"700px",fixedHeight:"520px"});
				$("a[title='Site-map']").colorbox({fixedWidth:"700px",fixedHeight:"520px"});
//Form validation
$("#publisher_application").validate();
});
