$(document).ready(function () {
							
	$("#top ul li:first-child a").css("border-left", "0px");
	
	
    jQuery('.simg a').click(function(e) {
        e.preventDefault();

        var imgSrc = $(this).attr('href');
        
        $('img.active').fadeOut(200, function() {
            $(this).removeClass('active');
            $(".menubox2").attr("src",imgSrc);
            $(".menubox2").addClass('active');
            var h = jQuery('.active').height();
            jQuery('.active').css('height', h);
            jQuery('.active').fadeIn(200, function() {});
        })

    });
	 
	 
	
	$(".prod-list-main li .image").mouseover(function(){
					$(this).parent().find(".hideit").switchClass('hideit', 'showit', 0);
					$(this).parent().find("img").addClass("selected");
		return false;	
	});
	$(".prod-list-main li .image").mouseleave(function(){
		$(this).find(".showit").switchClass('showit', 'hideit', 0);
		$(this).parent().find("img").removeClass("selected");
	}); 
	
	
	
	
	$(".prod-list li .image").mouseover(function(){
					$(this).parent().find(".hideit").switchClass('hideit', 'showit', 0);
					$(this).parent().find("img").addClass("selected");
		return false;	
	});
	$(".prod-list li .image").mouseleave(function(){
		$(this).find(".showit").switchClass('showit', 'hideit', 0);
		$(this).parent().find("img").removeClass("selected");
	}); 



 
});


