// JavaScript Document

function mobileDetector()
{
	if((navigator.userAgent.match(/iPad/i))) {
		//document.write("<link type=\"text\/css\" rel=\"stylesheet\" media=\"all\" href=\"http:\/\/www.carvart.com\/styles\/products\/woodcork_mobile.css\" charset=\"utf-8\" \/>");
	}
	
	else if(navigator.userAgent.match(/iPhone/i)) {
		//document.write("<link type=\"text\/css\" rel=\"stylesheet\" media=\"all\" href=\"http:\/\/www.carvart.com\/styles\/products\/woodcork_mobile.css\" charset=\"utf-8\" \/>");
	}
	
	else if(navigator.userAgent.match(/blackberry/i)) {
		document.write("<link type=\"text\/css\" rel=\"stylesheet\" media=\"all\" href=\"http:\/\/www.carvart.com\/styles\/global\/intro_blackberry.css\" charset=\"utf-8\" \/>");
	}
	
	else if((navigator.userAgent.match(/android/i)) || (navigator.userAgent.match(/opera/i)) || (navigator.userAgent.match(/palm/i)) || (navigator.userAgent.match(/windows/i))) {
		//document.write("<link type=\"text\/css\" rel=\"stylesheet\" media=\"all\" href=\"http:\/\/www.carvart.com\/newsite2\/styles\/global\/carvart_base_mobile.css\" charset=\"utf-8\" \/>");
	}
	
	else
	{
	}
}

mobileDetector();
