	var fadeTime=2000;
var delayTime=8000;
var delayFadeIn=2000;

$(document).ready(function()
{
	var active = window.location.href.split('/');;
	if(active[active.length-1]=="" | active[active.length-1]=="index.php")
	{
		$('<p>At Clinique Esthetique, the staff upholds an atmosphere of professionalism, personal attention and excellence in care, utilizing the highest quality and the most advanced technology, as well as providing the best therapeutic and medical grade aesthetic services available.</p>').appendTo('#text').hide();
		
		$('<img src=images/Brunette.jpg>').appendTo('#image').hide();
		$('<img src=images/FlowerBrunette.jpg>').appendTo('#image').hide();
		
		setTimeout('rotateElement("text",1,false)',9000);
		setTimeout('rotateElement("image",1,false)',4000);
	}

	$('#menu > ul > li').hover(function(e)
	{
		$('<a class=white><img src=images/white.png></a>').attr('href',$(this).children('a').attr('href')).appendTo(this).children('img').css({'opacity':0.15,'top':0,'left':0,'padding-top':-40,'margin':0,'position':'absolute'});
	}, function(e)
	{
		$(this).children('.white').remove();
	});
});

function rotateElement(id,childNumber,enter)
{
	if(enter==true)
	{
		$('#'+id+' :nth-child('+childNumber+')').fadeIn(fadeTime);
		enter=false;
		setTimeout('rotateElement($("#'+id+'").attr("id"),'+childNumber+','+enter+')',delayTime);
	}
	else
	{
		$('#'+id+' :nth-child('+childNumber+')').fadeOut(fadeTime);
		enter=true;
		var nextChildNumber = (childNumber %  $('#'+id).children().length)+1;
		setTimeout('rotateElement($("#'+id+'").attr("id"),'+nextChildNumber+','+enter+')',delayFadeIn);
	}
}
