/* *****************************************
//  WebTank javascript File
//  Title: resize_background.js
//  File updated: 2010-12-28 19:03:49
// 
//  Do NOT manually edit this generated file
// **************************************** */


// FUNCTIONS

function resizeBackground() {
	
//	console.log( "WINDOW HEIGHT = " + $(window).height() );
//	console.log( "DOCUMENT HEIGHT = " + $(document).height() );
//	console.log( $(window).height() + " - " + $("#main").height() );
	
	var height = 0;
	
	if( $(window).height() > $("#main").height() ) {
	
		height = $(window).height();
	
	} else {
	
		height = $("#main").height();
	
	}
	
	$("#background").css( {
		"width": $(window).width() + "px",
		"height": height + "px"
	} );
	
	$("#background .image").css( {
		"width": $(window).width() + "px",
		"height": height + "px"
	} );
	
}

/* */

$(window).load( function () {

	resizeBackground();

} );

$(window).resize( function() {

	resizeBackground();
	
} );

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