﻿$('document').ready(function() {
	
	if($('#homeMenu').is("ul")) {
		$('#homeMenu a').hover(function(){
			$($(this).children("img")[1]).fadeIn("normal");
		},function(){
			$($(this).children("img")[1]).fadeOut("slow");
		});
	}
	
	if($('#insideMenu').is("ul")) {
		$('#insideMenu a img').css("opacity","0.3");
		$('#insideMenu a').hover(function(){
			$($(this).children("img")[0]).animate({
				opacity: 1
			}, "normal");
		},function(){
			$($(this).children("img")[0]).animate({
				opacity: 0.3
			}, "fast");
		});
	}
	
});