$(document).ready(function(){
        $('#check').click(function(){
                if (this.checked){
                        $("#register").removeAttr("disabled");
                } else {
						 $("#register").attr("disabled","disabled");

                };
        });


		$('.boxgrid.slidedown').hover(function(){
			$(".cover", this).stop().animate({top:'-240px'},{queue:false,duration:300});
		}, function() {
			$(".cover", this).stop().animate({top:'0px'},{queue:false,duration:300});
		});
		
		$('.closeFloat').click(function(){
			$('.boxgrid.slidedown').hide();
		});
		
		
	$("div.panel_button").click(function(){
		$("div#panel").animate({
			height: "275px"
		})
		.animate({
			height: "255px"
		}, "fast");
	
		$("div.panel_button").toggle();
	
	});	
	
   $("div#hide_button").click(function(){
		$("div#panel").animate({
			height: "0px"
		}, "fast");
			
   });	
   
   
   
   
   
});
