/*$(document).ready(function(){

		if($.browser.msie === true){
			var theWindow        = $(window);
			var $bg              = $("#background_img");
			var aspectRatio      = $bg.width() / $bg.height();
			
			function resizeBg() {
				if ( (theWindow.width() / theWindow.height()) < aspectRatio ) {
				    $bg.removeClass('bgwidth');
				    $bg.addClass('bgheight');
				} else {
					$bg.removeClass('bgheight');
				    $bg.addClass('bgwidth');
				}
				$('.home_bg').css('margin-top','-'+($bg.height() / 2)+'px');
			}
			$(window).bind("resize", function() {
				resizeBg();
				
			}).trigger("resize");
			}else{
			
				$("#background_img").load(function() {
					var theWindow        = $(window);
					var $bg              = $("#background_img");
					var aspectRatio      = $bg.width() / $bg.height();
					
					function resizeBg() {
						if ( (theWindow.width() / theWindow.height()) < aspectRatio ) {
							$bg.removeClass('bgwidth');
							$bg.addClass('bgheight');
						} else {
							$bg.removeClass('bgheight');
							$bg.addClass('bgwidth');
						}
						$('.home_bg').css('margin-top','-'+($bg.height() / 2)+'px');
					}
					
					$(window).bind("resize", function() {
						resizeBg();
						
					}).trigger("resize");
					
				});
			}
	});*/
