$(document).ready(function(){


$('img:not(#word)').hover(
    function()  {
        $(this).css('z-index', 1000);
    },
    function() {
        var z = $(this).attr('z');
        $(this).css('z-index', z);
    }
 );


$commingSoon = $('#shopCommingSoon');
$('#menuShop').hover(
    function() {
	$commingSoon.fadeIn(400);
    },
    function() {
	$commingSoon.fadeOut(400);
    }
)
    

});

