(function($) {
    $(document).ready(function() {
		$(".readyToWear-image").hover(
			function() {
				$(this).find(".readyToWear-over").css("z-index","4");
			}, function() {
				$(this).find(".readyToWear-over").css("z-index","2");
			}
		);		
		$(".product-listing").hover(
			function() {
				$(this).find(".prodListing-over").css("display","block");
		       },
		       function() {
				$(this).find(".prodListing-over").css("display","none");
			}
		);		
    });
})(jQuery);