window.onload = function() {    
	$('#gallery a').lightBox();
	$('#scr').cycle({
		fx: 'scrollDown',
		speed: 300,
		timeout: 7000
	});
	setHeightOfPage();
	var show = document.getElementById('scr');	
	if(show)
	{
		show.style['visibility'] = 'visible';
	}
	
	
}
function setHeightOfPage() {
    var othertotals = $('#footer').height() + $('#menu_cont').height() + $('#header_Home').height() +2; 	
	var setH = $(window).height() - othertotals < 0 ? 0 : $(window).height() - othertotals;	
	if(setH > minWrapHeight)
	{
		$("#inner_wraper").height(setH);	
	} else {
		
		$("#inner_wraper").height(minWrapHeight);
	}
}
window.onresize = function() {
    setHeightOfPage();
}


