$(document).ready(function()
{
	if('background-size' in document.body.style || '-moz-background-size' in document.body.style || '-o-background-size' in document.body.style || '-webkitbackground-size' in document.body.style)
	{
		if(typeof console === 'undefined')
		{
			console.log("Well Done on your choice of browser!");
		}
	}
	else
	{
		var image = $(".background").css("background-image").replace(/"/g,"").replace(/url\(|\)$/ig, "");
		$(".background").css("background-image","none");
		
		$(".background").css({"height":$(window).height(),"overflow":"hidden"});
		$(".background").prepend('<img id="psuedo_bg" style="left:0;position:absolute;z-index:-1;" src="'+image+'"/>');
	
		$(window).resize(function(e)
		{
			var _h = $(window).height();
			var _w = $(window).width();
			if(_h/_w >= 0.66)
			{
				$("img#psuedo_bg").css({"height":"100%","width":"auto"});
			}
			else
			{
				$("img#psuedo_bg").css({"width":"100%","height":"auto"});
			}
			if($(window).height() > 680)
			{
				$(".background").css({"height":$(window).height()});
			}
		});
		$(window).trigger("resize");		
	}
});
