$(document).ready(function(){
//rollover	
	$("a img[src*='_on'],input[type=image]"+"input[src*='_on']").addClass("current");
	
	$("a img[class!='notover'],input[type=image]").mouseover(function(){
		if ($(this).attr("src").match(/_off./)){
			$(this).attr("src",$(this).attr("src").replace("_off.", "_on."));
			return;
		//}else if($(this).attr("src").match(/btn_/) || $(this).attr("src").match(/bnr_/) ){
		}else if($(this).attr("src").match(/_on/) ){
			//
		}else{
			$(this).fadeTo("50",0.6);
			return;
		}
	});

	$("a img[class!='current'],input[type=image]"+"input[class!='current']").mouseout(function(){
		if ($(this).attr("src").match(/_on./)){
			$(this).attr("src",$(this).attr("src").replace("_on.", "_off."));
			return;
		//}else if($(this).attr("src").match(/btn_/) || $(this).attr("src").match(/bnr_/) ){
		}else{
			$(this).fadeTo("50",1);
			return;		
		}
	});

});

