// JavaScript Document

$(document).ready(function() {

	$("#RFtop .specialbar a img, #RFtop .topbar .rfhover a img").hover( 
	  function () { 
	  	if($(this).attr('rel')!='nohover'){
			$(this).attr('src',$(this).attr('src').replace('.gif','-hover.gif'));
		}
	  },  
	  function () { 
	  	if($(this).attr('rel')!='nohover'){
			$(this).attr('src',$(this).attr('src').replace('-hover',''));
		}
	  } 
	);





	$("#ShopLayOut_Topmenu_TD a img").hover( 
	  function () { 
	  	if($(this).attr('rel')!='nohover'){
			$(this).attr('src',$(this).attr('src').replace('_up_','_over_'));
		}
	  },  
	  function () { 
	  	if($(this).attr('rel')!='nohover'){
			$(this).attr('src',$(this).attr('src').replace('_over_','_up_'));
		}
	  } 
	);






});













