$(document).ready(function(){
		resizeimg();
		$(window).resize(function(){
				 resizeimg();
		});
		$('.landingimg').css('overflow', 'hidden');
});

function resizeimg(){
		 return false;
		if (($(window).width()) > 800){
				$('.landingimg > img').width($(window).width());
				$('.imagebar .headerimg img').width($(window).width());
		}else {  
				$('.landingimg > img').width(800);
				$('.imagebar .headerimg img').width(800);
		}
		$('.landingimg').height($(window).height() - 80);
		$('.landingimg').width($('.landingimg > img').width());
}

function scrollDown(ele, offset, speed)
{
	var spot = $(ele).offset().top + offset;
	$('html,body').animate({scrollTop: spot }, speed);
	return false;
}
