$(document).ready(function() {
	$.preloadImages('/img/menu-right-hover.png','/img/menu-left-hover.png');
	$('.mainmenu').bind('mouseover', function() {
		$(this).css('background','url(/img/menu-right-hover.png) right top no-repeat');
		$(this).children().css('background','url(/img/menu-left-hover.png) left top no-repeat');
	});
	$('.mainmenu').bind('mouseout', function() {
		$(this).css('background','url(/img/menu-right.png) right top no-repeat');
		$(this).children().css('background','url(/img/menu-left.png) left top no-repeat');
	});
});

$.preloadImages = function() {
	for (var i=0; i<arguments.length; i++) {
		$('<img>').attr('src', arguments[i]);
	}
}