$(document).ready(function(){
	
	/*********************************************************************
	  Image rollover
	*********************************************************************/
	
	$(".rollover").hover(
		function(){
			if($(this).attr("src").indexOf("-hover") == -1) {
				var newSrc = $(this).attr("src").replace(".png","-hover.png#hover");
				$(this).attr("src",newSrc);
			}
		},
		function(){
			if($(this).attr("src").indexOf("-hover.png#hover") != -1) {
				var oldSrc = $(this).attr("src").replace("-hover.png#hover",".png");
				$(this).attr("src",oldSrc);
			}
		}
	);
});