<!-- Hover states for graphic buttons for IE6-->

$(function(){
	$('.SearchOneSubmit').hover(
		// mouseover
		function(){ $(this).addClass('SearchOneSubmitHover'); },
		
		// mouseout
		function(){ $(this).removeClass('SearchOneSubmitHover'); }
	);	
	
	
});	


$(function(){
	$('.SearchTwoSubmit').hover(
		// mouseover
		function(){ $(this).addClass('SearchTwoSubmitHover'); },
		
		// mouseout
		function(){ $(this).removeClass('SearchTwoSubmitHover'); }
	);	
	
});	


$(function(){
	$('.LogInSubmit').hover(
		// mouseover
		function(){ $(this).addClass('LogInSubmitHover'); },
		
		// mouseout
		function(){ $(this).removeClass('LogInSubmitHover'); }
	);	
	
});	



$(function(){
	$('.LogOn').hover(
		// mouseover
		function(){ $(this).addClass('LogOnHover'); },
		
		// mouseout
		function(){ $(this).removeClass('LogOnHover'); }
	);	
	
});




$(function(){
	$('.NewUser').hover(
		// mouseover
		function(){ $(this).addClass('NewUserHover'); },
		
		// mouseout
		function(){ $(this).removeClass('NewUserHover'); }
	);	
	
});

$(function(){
	$('.MoreBtn').hover(
		// mouseover
		function(){ $(this).addClass('MoreBtnHover'); },
		
		// mouseout
		function(){ $(this).removeClass('MoreBtnHover'); }
	);	
	
});

$(function(){
	$('.MoreBtn2').hover(
		// mouseover
		function(){ $(this).addClass('MoreBtn2Hover'); },
		
		// mouseout
		function(){ $(this).removeClass('MoreBtn2Hover'); }
	);	
	
});

$(function(){
	$('.MoreBtn3').hover(
		// mouseover
		function(){ $(this).addClass('MoreBtn3Hover'); },
		
		// mouseout
		function(){ $(this).removeClass('MoreBtn3Hover'); }
	);	
	
});

$(function(){
	$('.ViewAllBtn').hover(
		// mouseover
		function(){ $(this).addClass('ViewAllBtnHover'); },
		
		// mouseout
		function(){ $(this).removeClass('ViewAllBtnHover'); }
	);	
	
});


