	$(document).ready(
	function()
	{
		if (screen.width<1001)  {
		$("#topBar").css('width','1002px');
		$("#footerDivider").css('width','1002px');
		$("#footer").css('width','1002px');
		}
		else{
		$("#topBar").css('width','100%');
		$("#footerDivider").css('width','100%');
		$("#footer").css('width','100%');
		}
		
		var mainCurrentHeight = $("#mainContent").height();
		var mainMaxHeight = '630';
		if (screen.height>1001 && $(document).height()<1001){
		if (mainCurrentHeight < mainMaxHeight){
		
			$("#footer").css('bottom','0');
			$("#footer").css('position','absolute');
			$("#footerDivider").css('bottom','37');
			$("#footerDivider").css('position','absolute');
			$("#mainContent").css('height','635px');
			
			}
			
		if ((mainCurrentHeight < mainMaxHeight) && ($.browser.msie)){
			$("#footer").css('bottom','0');
			$("#footer").css('position','absolute');
			$("#footerDivider").css('bottom','37');
			$("#footerDivider").css('position','absolute');
			$("#mainContent").css('height','705px'); 
			}
		if ((mainCurrentHeight < mainMaxHeight) && ($.browser.opera)){
			$("#footer").css('bottom','0');
			$("#footer").css('position','absolute');
			$("#footerDivider").css('bottom','37');
			$("#footerDivider").css('position','absolute');
			$("#mainContent").css('height','725px'); 
			}
		}
		
		$("#gallery a").lightBox();

	});
