$(document).ready(function(){
	
	
	var $winHeight = $(window).height();

	$('.section').css({height: $winHeight-125});
	$('#images div').css({height: $winHeight});

	$(window).bind("resize", function(){
		var $winHeight = $(window).height();
		$('.section').css({height: $winHeight-125});
	});
	

	$('#top').localScroll();
	$('.submenu').localScroll();
	
	 $('#rollover a').hover(function () {
        $('.popups div').filter(this.hash).fadeIn();
		},function(){
        $('.popups div').filter(this.hash).fadeOut('fade'); 
		
    });
	 $('#rollover a').click(function(){
	return false;
	 });

});
