
$(document).ready(function(){
	x_display();
	x_hover_image();
	});

function x_hover_image(){
	$("img.x_rollover").hover(
		function () {
		var path = $(this).attr("src").split("_def.gif").join("_cur.gif");
			$(this).attr("src",path);
		},
		function () {
		var path = $(this).attr("src").split("_cur.gif").join("_def.gif");
			$(this).attr("src",path);
		}
	);
}

function x_display(){
	$(".x_display").show();
}


