$(function(){
	$.getJSON("Actions/NewYear/saveBanner.php",
	function(data) {
	 if (data.showBanner != "false") {
		var startLeft=($(window).outerWidth()-$('.newYearCont').outerWidth())/2;
		var startTop=($(window).outerHeight()-$('.newYearCont').outerHeight())/2;
		$('.newYearCont').css({'left': startLeft+'px', 'top': startTop+'px'});
		$(".newYearCont").animate({left: '0px', top: '0px', opacity: 1.0,}, 2000);
	}
	});
	var isStopAnim = false;
	$('.NewYearImg').click(function () {
		isStopAnim = true;
		$(this).stop(true, true);
		$(this).fadeOut();
		
		$.getJSON("Actions/NewYear/saveBanner.php",
			  {
				showBanner: false,
			  },
			  function(data) {
				
			  });
	});
	var isAnim=false;
	$(".NewYearImg").hover(function(){
	  if (isAnim || isStopAnim)
		return;
	  isAnim=true;
		$(this).effect("shake", { times:3 }, 300, function(){
			isAnim=false;
		});
	}, function(){
		
	});
});
