$(document).ready(function() {
	
	Shadowbox.init();
	
	var currentUrl = window.location.href;
	$('.qrcode_img').attr('src', 'http://chart.apis.google.com/chart?cht=qr&chs=150x150&chld=L|0&chl='+currentUrl);
	
	$('.scroll_top').click(function(){
		$("html:not(:animated),body:not(:animated)").animate({ scrollTop: 0}, 500 );
		return false;
	});
});