$("#order_photos").live('mouseover', function(){
	var normalImage = $(this).attr("src");//store original image
	var split_src = normalImage.split("."); //split the src
	var hoverImage = split_src[0]+'_over.'+split_src[1];//add hover to the image name and put the extension back
	$(this).css('cursor', "pointer");
	$(this).attr("src", hoverImage);
});
$("#order_photos").live('mouseout', function(){
	var hoverImage = $(this).attr("src");//store original image
	var split_src = hoverImage.split("."); //split the src
	var split_hover = split_src[0].split("_");//split the hover from the image name
	var normalImage = split_hover[0]+'.'+split_src[1];//add remove hover from the image name and put the extension back
	$(this).attr("src", normalImage);
});

$("#order_dvds").live('mouseover', function(){
	var normalImage = $(this).attr("src");//store original image
	var split_src = normalImage.split("."); //split the src
	var hoverImage = split_src[0]+'_over.'+split_src[1];//add hover to the image name and put the extension back
	$(this).css('cursor', "pointer");
	$(this).attr("src", hoverImage);
});
$("#order_dvds").live('mouseout', function(){
	var hoverImage = $(this).attr("src");//store original image
	var split_src = hoverImage.split("."); //split the src
	var split_hover = split_src[0].split("_");//split the hover from the image name
	var normalImage = split_hover[0]+'.'+split_src[1];//add remove hover from the image name and put the extension back
	$(this).attr("src", normalImage);
});
