﻿// Load jQuery
$(document).ready(function() {

	// image rollover 
	$("img[hover]").each(function() {
		var hoverImg = $(this).attr("hover");
		$("<img>").attr("src", hoverImg);
	});

	$("img[hover]").hover(function() {
		var currentImg = $(this).attr('src');
		$(this).attr('src', $(this).attr('hover'));
		$(this).attr('hover', currentImg);
	}, function() {
		var currentImg = $(this).attr('src');
		$(this).attr('src', $(this).attr('hover'));
		$(this).attr('hover', currentImg);
	});

});