$(function () {















$('.box1 img').mouseover(function() {







   $('.box1 img').fadeTo(5,0.5);



	



    $(this).animate({ 



        height: "171px", width: "230px", top:"-10px", left:"-10px" },200,



		function() { //make sure to wait swapping the z-index when image is above/under the gallery



       	   $(this).css('z-index',999).fadeTo(10,1); //in/de-crease the z-index by one



        });



});







$('.box1 img').mouseout(function() {



	$('.box1 img').fadeTo(5,1);	 



	



    $(this).animate({ 



        height: "151px", width: "210px",  top:"0px", left:"0px" },200,



     function() { //make sure to wait swapping the z-index when image is above/under the gallery



          $(this).css('z-index',99); //in/de-crease the z-index by one



        });



});



	// hide the release history when the page loads

	$('#release-wrapper').css('margin-top', '-' + ($('#release-wrapper').height() + 20) + 'px');

	



	

});








