
// OH GOD IMAGE ROLLOVERS
// SURELY WE ARE IN A GOLDEN AGE


jQuery(function() {
		   
	// hover event
    jQuery('.rollover').hover(function() {
		
		// get src of whatever's been hovered
        var currentImg = jQuery(this).attr('src');
		
		// get src of the image to repace it with (stored in the name attribute)
        jQuery(this).attr('src', jQuery(this).attr('name'));
		
		// SWAP SWAP SWAP
        jQuery(this).attr('name', currentImg);
		
    }, function() {
		
		// STRIKE THAT, REVERSE IT.
		
        var currentImg = jQuery(this).attr('src');
		
        jQuery(this).attr('src', jQuery(this).attr('name'));
		
        jQuery(this).attr('name', currentImg);
    });
});

