$(document).ready(function(){
	
	//$("#menu ul li a").corner("15px tl tr");
	//$(".submit").corner("15px");
	
	$(".with_info").parent().parent().hover(
	  function () {
		$(".info",this).slideDown(150);
	  },
	  function () {
		$(".info",this).slideUp(150);
	  }
	);
	
	$(".totop").hover(
	  function () {
		$("img",this).attr('src','/images/2top_on.jpg');
	  },
	  function () {
		$("img",this).attr('src','/images/2top.jpg');
	  }
	);
	
	$(".fancy").fancybox({
		 'onComplete': makeRoundedCorner,
		 'showCloseButton': false,
		 'hideOnContentClick': true,
		 'overlayColor': "#000000"
	});
	
	$(".grouped_elements").fancybox({
		 'onComplete': makeRoundedCorner,
		 'showCloseButton': false,
		 'hideOnContentClick': true,
		 'overlayColor': "#000000"
	});
	
	function makeRoundedCorner() 
	{ 
	   $('#fancybox-inner').css({'-moz-border-radius':'18px', '-webkit-border-radius':'18px', 'border-radius':'18px', 'background-color':'#A5A5A5'}); 
	   $('#fancybox-outer').css({'-moz-border-radius':'25px', '-webkit-border-radius':'25px', 'border-radius':'25px'}); 
	} 
	

	$('#middle_layer_white').css('height',$('#content_layer').height()-400+'px');
	
});
