// JavaScript Document
function adjustWindow()
{
	if ($(window).height() > 650) 
	{
		$("#wrapper").css('top', '0px');
		$("#slider").css('top', '320px');
	}
	if ($(window).height() <= 650) 
	{
		$("#wrapper").css('top', '-60px');
		$("#slider").css('top', '260px');
	}
	if ($(window).width() < 900) 
	{
		$("#wrapper").css('left', '-60px');
	}
	if ($(window).width() >= 900) 
	{
		$("#wrapper").css('left', '0px');
	}
}