$(function() {
	$('body').supersleight({shim: 'images/x.gif'});

	$(".rollover img").hover(function() {
		$(this).attr("src", $(this).attr("src").split("_regular").join("_over"));
	}, function() {
		$(this).attr("src", $(this).attr("src").split("_over").join("_regular"));
	});
});

