﻿$(function(){
	$('.rollover').hover(function(){
		var currentImg=$(this).attr('src');
		$(this).attr('src',$(this).attr('longdesc'));
		$(this).attr('longdesc',currentImg);
	},function(){
		var currentImg=$(this).attr('src');
		$(this).attr('src',$(this).attr('longdesc'));
		$(this).attr('longdesc',currentImg);
	});
});
