//smooth scroll
$(function(){ 
	$('a[href^=#]:not(a[href$=#])').click(function(){
		var href= this.hash;
		var $target = $(href == '#header' ? 'body' : href);
		if($target.size()){
			var top = $target.offset().top;
			$($.browser.safari ? 'body' : 'html').animate({scrollTop:top}, 500, 'swing');
		}
		return false;
	});
});

//m5lazy
jQuery(function($){
	$("img").m5LazyDisplay();
});
