
/*
 * Image preload
 */
jQuery.preloadImages = function() {
	for(var i = 0; i<arguments.length; i++) {
		jQuery("<img>").attr("src", arguments[i]);
	}
}
$.preloadImages(
	'/wp/wp-content/themes/mesh-v2/images/meshmarketing-on.gif'
);

$(function() {

	$('#meshu').mouseover(function() {
		$(this).attr('src', '/wp/wp-content/themes/mesh-v2/images/meshmarketing-on.gif')
	}).mouseout(function() {
		$(this).attr('src', '/wp/wp-content/themes/mesh-v2/images/meshmarketing.gif')
	});
	
});
