/* Direct Cars: Small Resolution Fix */
/*************************************/
/* Solves a problem where users with */
/* smaller screens (iPhone, Symbian, */
/* Wii etc.) would lose 50% of the   */
/* main window, due to an essential  */
/* CSS technique to get the window   */
/* into the center of the screen.    */
/*************************************/
$(function(){
	function setStylesheet(title) {
		var i, a, main;
		for(i=0; (a = document.getElementsByTagName("link")[i]); i++) {
			if(a.getAttribute("rel").indexOf("style")!= -1 && a.getAttribute("title")) {
				if(a.getAttribute("title") == title) a.disabled = false;
			}
		}
	}
	
	//if (screen.width <= 975) {
	if (window.innerWidth <= 975) {
		setStylesheet("Small Resolutions");
	}
});
