$(document).ready(function(){
		
	// no body class
	$('body').removeClass('nojs');
	
	// Lightbox
	if ($().lightbox) {
		$('a[rel^="lightbox"]').lightbox();	
	}	
	
	// SCrollto
	var scrollWin = function (selector) {
		jQuery('html, body').animate({
		scrollTop: jQuery(selector).offset().top-20
		}, 800);
	};
	jQuery("[href^=#]").click(function(e) {
		scrollWin (jQuery(this).attr("href"));
		return false;
	});


});


