(function($) {

	$(function() {
		$.jscript.Rollover();
		$.jscript.Pagetop();
		$.jscript.LightBox();
	});

	//---------------------------------------------------------------------

	$.jscript = {
		
		//preload
		Rollover: function(){
			$("img").lazyload({  
				placeholder : "/img/share/white.png",  
				effect : "fadeIn"  
			});
		},
		
		//pagetop
		Pagetop: function(){ 
			$('a[href^=#]').click(function () {
				$(this).blur();
				var href = $(this).attr("href");
				var topPx = $(href).offset().top;
				$('html,body').animate({ scrollTop: topPx }, 400, "swing");
				return false;
        	});
		},
		
		//lightbox
		LightBox: function(){ 
			$('a[href$=".gif"], a[href$=".jpg"], a[href$=".png"]').lightBox();
		}
		
	};
})(jQuery);

