// JavaScript Document
$(document).ready(function(){
	$(".menu-item").hover(function(){ 	//hovering
		if($(this).hasClass("current") !== true){
			var currSrc = $(this).attr("src");
			var newSrc = currSrc.replace("-off", "-on");
			$(this).attr("src", newSrc);
		}
	},function(){ 											// going back out
		if($(this).hasClass("current") !== true){
			var currSrc = $(this).attr("src");
			var newSrc = currSrc.replace("-on", "-off");
			$(this).attr("src", newSrc);
		}
  });
	
	$(".navigation ul li a").hover(function(){
		if($(this).hasClass("current") !== true && $(this).hasClass("header") !== true){
			$(this).addClass("active");
		}
	}, function(){
		if($(this).hasClass("current") !== true){
			$(this).removeClass("active");
		}
	});
	
	$(".getintouch").click(function(){
		$("#getintouch").toggle("slow");
	});
	
	$(".hideme").hide();
	
});