
$().ready(function () {
	
	//attach events for polaroids levelling
	/*$('#nav .button').hover(
		function () {
			$(this).css('z-index',$(this).css('z-index')+80);
		},
		function () {
			$(this).css('z-index',$(this).css('z-index')-80);
		}
	);*/
	
	
	 $("#nav .button").bind("mouseenter",function(){
     	$(this).css('z-index',parseInt($(this).css('z-index'))+80);
     }).bind("mouseleave",function(){
      	$(this).css('z-index',parseInt($(this).css('z-index'))-80);
     });

	
					
});
