// Redirect into Mobile version
//-------------------------------
function detectMobile()
{
	if ((navigator.userAgent.indexOf('iPhone') != -1) || (navigator.userAgent.indexOf('iPod') != -1) || (navigator.userAgent.indexOf('iPad') != -1)) {
		//document.location = "ipad/";
	}
}

// Load Page into target ID
//-------------------------------
function loadPage(loadLink, idTarget)
{
	$("#"+idTarget).html(ajaxLoad).load(loadLink);
}

// Prealoading Images
//-------------------------------
function imgPreload(img)
{
	scroller     = new Image();
	scroller.src = img;
}

// Prealoading Images
//-------------------------------
function getViewportSize()
{
	var viewport = new Array();
	
	if (typeof window.innerWidth != 'undefined')
	{
		  viewport['width']  = window.innerWidth;
		  viewport['height'] = window.innerHeight;
	}
	else if (typeof document.documentElement != 'undefined' && typeof document.documentElement.clientWidth != 'undefined' && document.documentElement.clientWidth != 0)
	{
		viewport['width']  = document.documentElement.clientWidth;
		viewport['height'] = document.documentElement.clientHeight;
	}
	else
	{
		viewport['width']  = document.getElementsByTagName('body')[0].clientWidth;
		viewport['height'] = document.getElementsByTagName('body')[0].clientHeight;
	}
	
	return viewport;
}
