/*
 * DVD cover rollover script
 * Binary Vein Digital Media
 */

$(document).ready(function(){
$("#puppy").hover(function() {
	$("#cover").attr({ src: "/include/img/content/puppy-dvd-us.jpg", alt: "Mist: The Tale of a Sheepdog Puppy" });
	return false;
}, function(){}
);
$("#piggy-sue").hover(function() {
	$("#cover").attr({ src: "/include/img/content/piggy-sue.jpg", alt: "Piggy Sue and the Other Sheepdog Tales (Complete Series 3)" });
	return false;
}, function(){}
);
$("#puppy-uk").hover(function() {
	$("#cover").attr({ src: "/include/img/content/puppy-dvd-uk.jpg", alt: "Mist: The Tale of a Sheepdog Puppy" });
	return false;
}, function(){}
);
$("#sheepdog-tales").hover(function() {
	$("#cover").attr({ src: "/include/img/content/sheepdog-tales-dvd.jpg", alt: "Mist Sheepdog Tales" });
	return false;
}, function(){}
);
$("#year-working-sheepdog-us").hover(function() {
	$("#cover").attr({ src: "/include/img/content/working-sheepdog-dvd.jpg", alt: "Year of the working sheepdog" });
	return false;
}, function(){}
);
$("#sheepdog-tales-2").hover(function() {
	$("#cover").attr({ src: "/include/img/content/series2DVD.jpg", alt: "Mist Sheepdog Tales series 2" });
	return false;
}, function(){}
);
$("#shephards-watch").hover(function() {
	$("#book-cover").attr({ src: "/include/img/content/shephards-watch.jpg", alt: "A Shepherd's Watch (paperback)" });
	return false;
}, function(){}
);
$("#dogs-windcutter").hover(function() {
	$("#book-cover").attr({ src: "/include/img/content/dogs-of-windcutter-down.jpg", alt: "The Dogs of Windcutter Down" });
	return false;
}, function(){}
);

});

