/*  * © Albin Carrier for LILHOOT, www.lilhoot.eu - 2 févr. 2010 */

gaLoadFile(); /*GOOGLE ANALYTICS Must be outside $ready to load the external ga file first fm google server */


$(function() //jQuery call
{
	gaLaunch(); /*EXTERNAL GOOGLE ANALYTICS*/
	
	if(!document.location.toString().match('.php') || document.location.toString().match('/index.php'))
		slideSwitch();	/*LILHOOT.EU SLIDESWITCH*/
	if(document.location.toString().match('s=') && !document.location.toString().match('img='))
		albumSlideSwitch();
});




/*--------------------------------------------------------LILHOOT.EU EXTERNAL GOOGLE ANALYTICS*/
function gaLoadFile()
{
	var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
	var gaScript = document.createElement("script");
	gaScript.setAttribute("type", "text/javascript");
	gaScript.setAttribute("src", gaJsHost +"google-analytics.com/ga.js");
	document.getElementsByTagName("head")[0].appendChild(gaScript); //$('head');
}


function gaLaunch()
{
	if (typeof(_gat) == 'object')
	{
		var pageTracker = _gat._getTracker("UA-16003373-1");
		pageTracker._trackPageview();
	}
}




