﻿jQuery(function( $ ){


    //------------------
	// MENU 1
	//------------------
	$("#menucontent1 li").hover(function() {	//On hover...
	              var tagA =$(this).find("a");
                  if($(this).attr("class") == "active")
                  {
                  
                  }
                  else
                  {
                        $(tagA).stop().animate({color: "#FFFFFF"}, {duration:250});
                  }
		
	} , function() { //On hover out...
	               var tagA =$(this).find("a");
                  if($(this).attr("class") == "active")
                  {
                  
                  }
                  else
                  {
                        $(tagA).stop().animate({color: "#7c7c7c"}, {duration:250});
                  }
		
	});
	
	//------------------
	// MENU 1_1 style 'n' trends
	//------------------
	$("#menucontent1_1 li").hover(function() {	//On hover...
	              var tagA =$(this).find("a");
                  if($(this).attr("class") == "active")
                  {
                  
                  }
                  else
                  {
                        $(tagA).stop().animate({color: "#FFFFFF"}, {duration:250});
                  }
		
	} , function() { //On hover out...
	               var tagA =$(this).find("a");
                  if($(this).attr("class") == "active")
                  {
                  
                  }
                  else
                  {
                        $(tagA).stop().animate({color: "#7c7c7c"}, {duration:250});
                  }
		
	});
	
	
	
    //------------------
	// MENU 2
	//------------------
	$("#menucontent2 li").hover(function() {	//On hover...
	              var tagA =$(this).find("a");
                  if($(this).attr("class") == "active")
                  {
                  
                  }
                  else
                  {
                        $(tagA).stop().animate({color: "#FFFFFF"}, {duration:250});
                  }
		
	} , function() { //On hover out...
	               var tagA =$(this).find("a");
                  if($(this).attr("class") == "active")
                  {
                  
                  }
                  else
                  {
                        $(tagA).stop().animate({color: "#7c7c7c"}, {duration:250});
                  }
		
	});
	
	//------------------
	// MENU 3 collection
	//------------------
	$("#menucontent3 li").hover(function() {	//On hover...
	              var tagA =$(this).find("a");
                  if($(this).attr("class") == "active")
                  {
                  
                  }
                  else
                  {
                        $(tagA).stop().animate({color: "#ffffff"}, {duration:250});
                  }
		
	} , function() { //On hover out...
	               var tagA =$(this).find("a");
                  if($(this).attr("class") == "active")
                  {
                  
                  }
                  else
                  {
                        $(tagA).stop().animate({color: "#a8a8a8"}, {duration:250});
                  }
		
	});
	
	//------------------
	// MENU 1 DETAIL collection
	//------------------
	$(".collection1 a").hover(function() {	//On hover...
                  if($(this).hasClass("active"))
                  {
                  
                  }
                  else
                  {
                        $(this).stop().animate({color: "#ffffff"}, {duration:250});
                  }
		
	} , function() { //On hover out...
                  if($(this).hasClass("active"))
                  {
                  
                  }
                  else
                  {
                        $(this).stop().animate({color: "#7c7c7c"}, {duration:250});
                  }
		
	});
	
	
	//-------------------------
	// MENU 4 collection : item
	//-----------------------
	$("#menucontent4 li").hover(function() {	//On hover...
	              var tagA =$(this).find("a");
                  if($(this).attr("class") == "active")
                  {
                  
                  }
                  else
                  {
                        $(tagA).stop().animate({color: "#ffffff"}, {duration:250});
                  }
		
	} , function() { //On hover out...
	               var tagA =$(this).find("a");
                  if($(this).attr("class") == "active")
                  {
                  
                  }
                  else
                  {
                        $(tagA).stop().animate({color: "#a8a8a8"}, {duration:250});
                  }
		
	});
	
 });
