$(document).ready(function() {	
	if ((screen.width>1024) && (screen.height>768)) {
		//Screen size: larger than 1024x768, redirecting to normal site
		$("link[rel=stylesheet]:not(:first)").attr({href : "detect1024.css"});
		$(window.location).attr('href', 'index-main.htm');
	} else if((screen.width==1024) && (screen.height==768) || (screen.width==768) && (screen.height==1024)) {
		//Screen size: it's an iPad!
		$(window.location).attr('href', 'index-ipad.htm');
	} else {
		//Screen size: less than 1024x768
		$(window.location).attr('href', 'http://m.theradioagency.com');
	}
});

