function adjustStyle(width) {
    width = parseInt(width);
    if (width <= 480) {
        $("#size-stylesheet").attr("href", "http://www.555photography.com/style/twoColumn.css");
    } else if ((width > 480) && (width <= 1024)) {
        $("#size-stylesheet").attr("href", "http://www.555photography.com/style/twoColumn.css");
    } else if (width > 1024){
        $("#size-stylesheet").attr("href", "http://www.555photography.com/style/threeColumn.css");
    }
}

$(function() {
    adjustStyle($(this).width());
    $(window).resize(function() {
        adjustStyle($(this).width());
    });
	
	if((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i))) {
   		if (document.cookie.indexOf("iphone_redirect=false") == -1) 
			window.location = "http://www.555photography.com/iphone/index.html";
	}
});

