/**
 * @author jhamson
 */

// this script should just asign the mouse over events .. have the dropdown.php create the images. 
$(document).ready(function() {

	$(function() {
	    $('.tmir_mouseover').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);
	    });
	});		
	
	$("#content").fadeIn(2600);
});

