/**
 * @author mfox
 */

/*$(document).ready(function(){
	
	
});
*/

/**
 * @author mfox
 */

$(document).ready(function(){
	
	$('.main_home_btn a').hover(function()  
	{  
		 
		//$(this).stop().animate({marginTop:-3},200);  
		//$(this).find(".hover-shine").stop();  
		//$(this).find(".hover-shine").css("background-position","-99px 0");  
		//$(this).find(".hover-shine").animate({backgroundPosition: '246px 0'},700);  
		   
	}, function()  
	{  
		 
		$(this).stop().animate({marginTop:0},200);  
	});
	
	$('a.rems_btn').hover(function()  
	{  
		 $('#disclaimer').stop().animate({
			 height: '80',
			 top: '410'
		 }, 700);
		 $('#disclaimer p').stop().animate({
			 fontSize: '13'
		 }, 700);
		 
		//$(this).find(".large_thumb").stop().animate({marginLeft:-7, marginTop:-7},200);  
		//$(this).find(".large_thumb_shine").stop();  
		//$(this).find(".large_thumb_shine").css("background-position","-99px 0");  
		//$(this).find(".large_thumb_shine").animate({backgroundPosition: '99px 0'},700);  
		   
	}, function()  
	{  
		 $('#disclaimer').stop().animate({
			 height: '60',
			 top: '430'
		 }, 700); 
		 
		 $('#disclaimer p').stop().animate({
			 fontSize: '10'
		 }, 700);
	});
});


