/**
 * @author sgorshechnikov
 */
  		$(document).ready(function(){
		    $("a.menuItem").hover(function () {
			if(!$(this).find("img").is(":animated"))
			$(this).find("img.out").fadeOut(400);
  			  }, function () {
  			  $(this).find("img.out").fadeIn(400);
   			 });

			    $("a.menuItemTop").hover(function () {
			if(!$(this).find("img").is(":animated"))
			$(this).find("img.out").fadeOut(400);
  			  }, function () {
  			  $(this).find("img.out").fadeIn(400);
   			 });
			 
			 $("#color").hover(function () {
			if(!$(this).find("img").is(":animated"))
   		    $(this).find("img").fadeIn('slow');
  			  }, function () {
  			  $(this).find("img").fadeOut('slow');
   			 });
 		 });
	var oldp=-1;	  