/*
	Graffiti Monsters
	Script © 2012 James Clark
*/

$(document).ready(function(){
	init();
});

function init() {
	imageHover();

	/* FUNCTIONS */

	// Image Hover Toggle
	function imageHover() {
		$(".album-cover").hover(function() {
			var that = $(this);
			that.animate({
				opacity:'toggle'
			}, 140, function() {
				that.attr("src", "images/photoshop/polar_bear_300x300.jpg");
				that.animate({
					opacity:'toggle'
				}, 40);
			});
		}, function() {
			var that = $(this);
			that.animate({
				opacity:'toggle'
			}, 140, function() {
				that.attr("src", "images/photoshop/fox_grapes_300x300.jpg");
				that.animate({
					opacity:'toggle'
				}, 40);
			});
		});
	};

};
