$(function(){
	
// img hover
	  $('.animated').hover(function(){
		  $(this).parent().find('img').stop().animate({rotate:'360deg'},1000)       
	  }, function(){
		  $(this).parent().find('img').stop().animate({rotate:'0deg'},500)       
	  })

	// lightbox image
	$(".lightbox-image").append("<span></span>");
	
	$(".lightbox-image").hover(function(){
		$(this).find("img").stop().animate({opacity:0.5}, "normal")
	}, function(){
		$(this).find("img").stop().animate({opacity:1}, "normal")
	});
// box-hover

//			$('.box-1 .bgr').css({opacity:'0'});
//			$(".box-1").hover(function(){
//				$(this).addClass("alt").find('.bgr').stop().animate({opacity:1}, "low");
//			}, function(){
//				$(this).removeClass("alt").find('.bgr').stop().animate({opacity:0}, "low");
//			});

// list hover
//	$('.list-1 a').hover(function(){
//			th=$(this).find('img');					 
//			th.stop().animate({left:'7px'}, 300,'easeOutBounce');
//		}, function(){
//			th.stop().animate({left:'0px'}, 300,'easeOutBounce');			
//	});	

// list hover
//	$('.block').hover(function(){
//			th=$(this).find('img');					 
//			th.stop().animate({top:'30px'}, 600,'easeOutBounce');
//		}, function(){
//			th.stop().animate({top:'0px'}, 600,'easeOutBounce');			
//	});	
});
$(window).load(function(){
	$('#gspinner').fadeOut()	
})
