jQuery(document).ready(function() {

	jQuery("li.lookbook").hover(function(){
		jQuery("div#sc1").show()
	}, function(){
		jQuery("div#sc1").hide()
	});
	
	jQuery("div#sc1").hover(function(){
		jQuery(this).show()
	}, function(){
		jQuery(this).hide()
	});
	
	jQuery("li.shop").hover(function(){
		jQuery("div#sc2").show()
	}, function(){
		jQuery("div#sc2").hide()
	});
	
	jQuery("div#sc2").hover(function(){
		jQuery(this).show()
	}, function(){
		jQuery(this).hide()
	});

});
