$(document).ready(function () {
	resizeDivs();
});

$(window).resize(function() {
	resizeDivs();
});

function resizeDivs() {
	if ($(window).height() > 690) 
	{
		$('#top').css("margin-top",$(window).height()*0.1);
	}
	else 
	{
		$('#top').css("margin-top","0");
//		$('#navigation').css("margin-left","0");
//		$('#navigation').css("height","400");
//		$('#main').css("height","400");
//		$('#menu').css("margin-top","10");
//		$('#logo').css("padding-top","5");
//		$('#logo').css("margin-bottom","10");
//		$('#gallery').css("height","400");
//		$('#gallery img').css("height","400");
//		$('#home').css("height","400");
//		$('#home img').css("height","400");
//		$('#gallery').css("width",$(window).width()-205);

	}
		$('#main').css("width",$(window).width()-205);
		$('#bottom').css("width",$(window).width());
		$('#gallery').css("width",$(window).width()-150);
		$('#bottom #controls').css("width",$(window).width()-430);	
}

