$(document).ready(function() {
      //menu starts
      function addMega(){
        $(this).addClass("hovering");
        }

      function removeMega(){
        $(this).removeClass("hovering");
        }

    var megaConfig = {
         interval: 500,
         sensitivity: 4,
         over: addMega,
         timeout: 500,
         out: removeMega
    };

    $("li.mega").hoverIntent(megaConfig)
	});
	
	var imagenPrincipal = function () {
			
			$("#womensmenuloader").load("categories-addictbybosi.html #woman").fadeIn('slow');
		};

	$(".street").hover(
  		function () {
    		$("#womensmenuloader").load("categories-addictbybosi.html #street").fadeIn('slow');
  		}, imagenPrincipal
	);
	
	$(".soho").hover(
  		function () {
    		$("#womensmenuloader").load("categories-addictbybosi.html #soho").fadeIn('slow');
  		}, imagenPrincipal
				
	);
	
	$(".watches").hover(
  		function () {
    		$("#womensmenuloader").load("categories-addictbybosi.html #watches").fadeIn('slow');
  		}, imagenPrincipal
	);
	$(".shades").hover(
  		function () {
    		$("#womensmenuloader").load("categories-addictbybosi.html #shades").fadeIn('slow');
  		}, imagenPrincipal
	);
	
	
	
	
