function rollovers(){		
	$(".normal a img").each(function(){
		$(this).attr("src",$(this).attr("src").replace("-over","-up"));
	});
	try{
		$(".active img").attr("src",
			$(".active img").attr("src").slice(0,$(".active img").attr("src").length-6)+"over.jpg"
		);
	}catch(e){
		
	}
	$(".normal").bind("mouseover",function(){
		$(this).children("a").children("img").attr("src",$(this).children("a").children("img").attr("src").replace("-up","-over"));
	});
	$(".normal").bind("mouseout",function(){
		$(this).children("a").children("img").attr("src",$(this).children("a").children("img").attr("src").replace("-over","-up"));
	});
	$(".normal").bind("click",function(){
		$(this).children("a").children("img").attr("src",$(this).children("a").children("img").attr("src").replace("-over","-up"));
	});
}
