$(document).ready(function(){
    $("ul.dropdown li").hover(function(){
    
        $(this).addClass("hover");
        $('ul:first',this).css('visibility', 'visible');
    
    }, function(){
    
        $(this).removeClass("hover");
        $('ul:first',this).css('visibility', 'hidden');
    
    }); 
	
	$("#slideshowRight p").children().appendTo("#slideshowRight");
	$("#slideshowLeft p").children().appendTo("#slideshowLeft");
	$(".pics p").remove();
		$('#slideshowLeft').cycle({ 
		fx:     'cover', 
    	next:   '#leftnext',
    	easing:  'easeInOutQuint', 
    	timeout: 5000,
    	speed: 1000
	});
	$('#slideshowRight').cycle({ 
		fx:     'cover', 
    	next:   '#rightnext',
    	easing:  'easeInOutQuint', 
    	timeout: 5000,
    	speed: 1000
    });
    $('#leftnext').hover(function(){
    	$(this).animate({opacity: 0.8},500);
    }, function() {
	 	$(this).animate({opacity: 0.4},500);
	});
	$('#rightnext').hover(function(){
    	$(this).animate({opacity: 0.8},500);
    }, function() {
	 	$(this).animate({opacity: 0.4},500);
	});
	/*$('.cloth_boxes img').jcaption({
		copyStyle: false,removeStyle: true,autoWidth: true,captionElement: 'div'
	});*/
	$('.leftmenu li a').append('<span class="smallarrow"><img src="images/small_arrow.png"/></span>');
	$('.leftmenu li a').parent().not('.active').hover(function(){
		$(this).children('a').animate({ fontSize: "14px" }, "fast");
		$(this).children('a').children().fadeIn("fast");
	}, function() {
		$(this).children('a').animate({ fontSize: "12px" }, "fast");
	 	$(this).children('a').children().fadeOut("fast");
	});

 });


