$(document).ready(function(){
	// menu effects
	
	$(".menu-wrapper a").mouseover(function() {
		$(this).animate({ 
			color: "white",
			backgroundColor: "#FF0080"
		}, 600 );
	});
	$(".menu-wrapper a").mouseout(function() {
		$(this).stop().animate({
			color: "#009FE4",
			backgroundColor: "white"
		}, 100);
	});

	// image mouseover hover effect
	$(function(){
		 $(".mouseover").hover(
			  function(){this.src = this.src.replace("_s1","_s2");},
			  function(){this.src = this.src.replace("_s2","_s1");
		 });
	});

	// preload image function
	jQuery.preloadImages = function() {   
		 for(var i = 0; i<arguments.length; i++)   
		{
			  jQuery("<img>").attr("src", arguments[i]);   
		} 
	}

});

