$(document).ready(function(){
	
	if (navigator.userAgent.match(/iPhone/i) || navigator.userAgent.match(/iPad/i) || navigator.userAgent.match(/Android/i)) {
		$("head").append('<link rel="stylesheet" href="http://www.stevechab.com/styles/lofi.css">');
	} else {
		bg();
		$(window).resize(function(){bg()});
	}
});

function bg() { // handles background resize
	$(document.body).css("background-image","url(http://www.stevechab.com/images/bg-stevechab.jpg)");
	
	if ($(window).height() >= $(window).width()) $(document.body).css("background-size","auto 100%")
	else $(document.body).css("background-size","100% auto")
}
