function fixTitleWidth() {
   if (navigator.appName.indexOf("Internet Explorer") > -1)
   {
	var main = document.getElementById("main");
	var inner_main = document.getElementById("inner_main");
	var title_img = document.getElementById("title_img");

	inner_main.style.position = "absolute";
	inner_main.style.top = "101px";
	inner_main.style.left = "178px";

	var totalWidth = document.documentElement.offsetWidth;
	totalWidth -= 200;

	main.style.width = totalWidth + "px";
	inner_main.style.width = totalWidth + "px";
	if (title_img != null)
		title_img.style.width = totalWidth + "px";
   }
}

function fixGalleryImages()
{
   if (navigator.appName.indexOf("Internet Explorer") > -1)
   {
   	var thumbnails = document.getElementById("thumbnails");
   	thumbnails.style.position = "absolute";
   	thumbnails.style.top = "0px";
   	thumbnails.style.left = "-500px";

   	var main_image = document.getElementById("main_image");
   	main_image.style.position = "absolute";
   	main_image.style.top = "0px";
   	main_image.style.left = "-300px";

   }
}

function pushFooterToBottom()
{
	var totalHeight = document.documentElement.clientHeight;

	var inner_main = document.getElementById("inner_main");
	var main_bottom = document.getElementById("main_bottom");
	
	var inner_main_height = inner_main.offsetHeight;
	var main_bottom_height = main_bottom.offsetHeight;
	
	var room_at_bottom = totalHeight-inner_main_height-main_bottom_height;

	main_bottom.style.position = "relative";		
	main_bottom.style.top = "0px";
	main_bottom.style.left = "0px";

	if (room_at_bottom > 0)
	{
		var main_bottom_top = main_bottom.offsetTop;
		var main_bottom_left = main_bottom.offsetLeft;

		main_bottom.style.position = "absolute";
		main_bottom.style.top = main_bottom_top + room_at_bottom + "px";
		main_bottom.style.left = main_bottom_left + "px";
	}
}
