// CONCEPT CREATIVE COMMUNICATIONS SCRIPTS

$(document).ready(function(){
	//MENU
	if($('h1').text()=='Shoot | Edit | Design'){
		$('#menuNavRoot > li:nth-child(1)').addClass('menuNavTopLevelCurrent');
	}else if($('h1').text()=='What We Do'){
		$('#menuNavRoot > li:nth-child(2)').addClass('menuNavTopLevelCurrent');
	}else if($('h3').text()=='Creative'){
		$('#menuNavRoot > li:nth-child(3), #menuNavRoot > li:nth-child(3) .menuNavTopLevelTop li:nth-child(1)').addClass('menuNavTopLevelCurrent');
	}else if($('h3').text()=='Industrial'){
		$('#menuNavRoot > li:nth-child(3), #menuNavRoot > li:nth-child(3) .menuNavTopLevelTop li:nth-child(2)').addClass('menuNavTopLevelCurrent');
	}else if($('h1').text()=='Clients'){
		$('#menuNavRoot > li:nth-child(4)').addClass('menuNavTopLevelCurrent');
	}else if($('h1').text()=='Testimonials'){
		$('#menuNavRoot > li:nth-child(4), #menuNavRoot > li:nth-child(4) .menuNavTopLevelTop li:nth-child(1)').addClass('menuNavTopLevelCurrent');
	}else if($('h1').text()=='About Us'){
		$('#menuNavRoot > li:nth-child(5)').addClass('menuNavTopLevelCurrent');
	}else if($('h1').text()=='Contact'){
		$('#menuNavRoot > li:nth-child(6)').addClass('menuNavTopLevelCurrent');
	}
	if(navigator.userAgent.match(/Android/i)||navigator.userAgent.match(/webOS/i)||navigator.userAgent.match(/iPhone/i)||navigator.userAgent.match(/iPad/i)){
		$('ul.expand1').css({'display':'block','height':'44px'});
		$('ul.expand2').css({'display':'block','height':'26px'});
	}else{
		$('ul.expand1, ul.expand2').css('height','0');
		$('li.expand1').mouseenter(function(){$('ul.expand1').stop().animate({'height':'44px'},400);});
		$('li.expand2').mouseenter(function(){$('ul.expand2').stop().animate({'height':'26px'},400);});
		$('li.expand1').mouseleave(function(){$('ul.expand1').stop().animate({'height':'0'},400);});
		$('li.expand2').mouseleave(function(){$('ul.expand2').stop().animate({'height':'0'},400);});
	}
	//INITIALIZE
	$('#overlay').show();
	$('#content').css('min-height','0');
	$('#content, #home').hide().children().hide();
	$('#home').css('height','0');
	$('#camera, #running-crew').fadeOut(0);
	//FADE EFFECTS
	$('#btn-find-on-googlemaps, #btn-browse-our-vimeo, #btn-follow-us-on-facebook, #btn-showreel, #submit').mouseenter(function(){$(this).stop().fadeTo(200,0.5);});
	$('#btn-find-on-googlemaps, #btn-browse-our-vimeo, #btn-follow-us-on-facebook, #btn-showreel, #submit').mouseleave(function(){$(this).stop().fadeTo(200,1);});
	//HOVER EFFECTS
	$('#creative a').mouseenter(function(){$('#creative #rev').html($(this).attr('rev'));});
	$('#creative a').mouseleave(function(){$('#creative #rev').html('<span>Title:</span><br/><span>Client:</span>');});
	$('#whatWeDo_link li:not(.currentlink)').mouseenter(function(){$(this).css('color','#fff');});
	$('#whatWeDo_link li:not(.currentlink)').mouseleave(function(){$(this).removeAttr('style');});
});

$(window).load(function(){
	if($('h1').text()=='Shoot | Edit | Design'){
		$('#overlay').fadeOut(400);
	}else{
		if($('h2').text()=='Creative'||$('h2').text()=='Industrial'){
			var heightType='height';
		}else{
			var heightType='min-height';
		}
		$('#overlay').fadeOut(400,function(){
			$('#content').show(400,function(){
				$('#content').animate({heightType:'380px'},400,function(){
					if($('h1').text()=='What We Do'){
						$('#content, #whatWeDo').show(0);
						$('h1').show(400);
						$('#whatWeDo_content, #whatWeDo_link').css({'height':'0','width':'0'});
						$('#whatWeDo_content').animate({'height':'319px','width':'401px'},400);
						$('#whatWeDo_link').animate({'height':'240px','width':'179px'},400);
					}else if($('h1').text()=='Our Work'){
						$('#content, #creative').show(0);
						$('h1').show(400);
						$('#creative').css({'height':'0','width':'599px'});
						$('#creative').animate({'height':'380px'},400);
					}else{
						$('#content').children().show(400,function(){
							if($('h1').text()=='About Us'){
								$('#running-crew').fadeIn(600);
							}
						});
					}
				});
			});
		});
	}
});
