
/*
 * 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_bw.png'
);

$(function() {

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

