(function($) {
	$.fn.liquid_bg = function(callerSettings){
		
		var settings;
		settings = $.extend({
    		bg_image_path: ''
    	},callerSettings||{});
		
		$(document.body).prepend('<div id="BGContainer"><img src="' + settings.bg_image_path + '" /></div>');
		
		$bgcontainer = $('#BGContainer');
		$bgcontainer.css({'top':'0px', 'left':'0px', 'z-index':'-1000'});
		
		if($.browser.msie) {
			$bgcontainer.css({'position':'absolute'});
		} else {
			$bgcontainer.css({'position':'fixed'});
		}
		;
		
		function BGResize(){
			$windowwidth = $(document).width();
			$windowheight = $(document).height() + 40;
			$bgcontainer.find('img').width($windowwidth).height($windowheight);
		};
		
		BGResize();
		
		$(window).bind('resize', function(){
			BGResize();
		});
	
	} // ends fn.liquid_bg
})(jQuery);
