$().ready(function(){
	var s = document.documentElement;
	var w = s.clientWidth;
	//$('.overflow').css({'width':w+'px','overflow':'hidden'});
	
	$(window).bind('resize', function(){
		var w = s.clientWidth;
		//$('.overflow').css({'width':w+'px','overflow':'hidden'});	
	});
	$('a.lightbox').lightBox();
});

