// JavaScript Document
$(document).ready(function(){
	$('.product').hover(function(){
		var the_img = $(this);
		var main_src = the_img.attr('src');
		var rollover_src = the_img.attr('rollover');
		
		if(rollover_src != ''){
			the_img.attr('src', rollover_src);
			the_img.attr('rollover', main_src);
		}
	},
	function(){
		var the_img = $(this);
		var main_src = the_img.attr('src');
		var rollover_src = the_img.attr('rollover');
		
		if(rollover_src != ''){
			the_img.attr('src', rollover_src);
			the_img.attr('rollover', main_src);
		}
	});
});