/* SUNO NAV JQUERY SCRIPT */

$(document).ready(
		function(event) {
			
			$('#navBack').animate({
				opacity: 0.85,
			}, 10, "linear");
		}
);

$(function(navPullDown) {	   
	$('.buttons p').toggle(
		function(event) {
			$('#nav').animate({
				top: '-=45px',
			}, 150, "linear");
			$('.buttons p').text('+').css({fontSize:'21px',top:2});
		},
		function(event) {
			$('#nav').animate({
				top: '+=45px',
			}, 450, "linear");
			$('.buttons p').text('X').css({fontSize:'12px',top:10});
		}
	);
});

$(function(subNavPullDown) {
	var slide = 0;
	var swap = 0;
	var highlightSpeed = 100;
	var filmSeasons = $('#appendFilm');
	var collectionSeasons = $('#appendCollections');
	$('a#collections').bind({
		mouseover: function(event) {
			$('a.navHeader').not(this).animate({opacity: 0.66,},highlightSpeed,"linear");
			$('a#collections').css({textDecoration: 'underline'}).animate({opacity: 1,},highlightSpeed,"linear");
			if(slide < 1) {
				$('#nav').animate({
					height: '180px',
				}, 300, "linear").css('z-Index','2000');
				collectionSeasons.slideDown(300);
				$('.buttons p').text('');
				slide++;
				swap++;
			} else {
				if(swap > 0) {
					$('a#film').css('text-decoration', 'none');
					filmSeasons.slideUp(200);
					collectionSeasons.slideDown(300);
				}
			}
		}
	});
	
	$('a#film').bind({
		mouseover: function(event) {
			$('a.navHeader').not(this).animate({opacity: 0.66,},highlightSpeed,"linear");
			$('a#film').css({textDecoration: 'underline'}).animate({opacity: 1,},highlightSpeed,"linear");
			if(slide < 1) {
				$('#nav').animate({
					height: '180px',
				}, 300, "linear").css('z-Index','2000');
				filmSeasons.slideDown(300);
				$('.buttons p').text('');
				slide++;
				swap++;
			} else {
				if(swap > 0) {
					$('a#collections').css('text-decoration', 'none');
					collectionSeasons.slideUp(200);
					filmSeasons.slideDown(300);
				}
			}
		}
	});
	
	$('a#shop, a#brand, a#stockists, a#press, a#inquiries').bind({
		mouseover: function(event) {
			$('a.navHeader').not(this).animate({opacity: 0.66,},highlightSpeed,"linear");
			$(this).css({textDecoration: 'underline'}).animate({opacity: 1,},highlightSpeed,"linear");
			$('a#collections').css('text-decoration', 'none');
			$('a#film').css('text-decoration', 'none');
			if (slide > 0) {
				$('#nav').animate({
					height: '69px',
				}, 200, "linear").css('z-Index','1000');
				$('ul.navSubCat').slideUp(200);
				$('.buttons p').text('X');
				slide = 0;
			}
		},
		mouseout: function(event) {
			$(this).css('text-decoration', 'none');
			$('a.navHeader').animate({opacity: 1,},highlightSpeed,"linear");
		}	
	});
	$('#nav').bind({
		mouseleave: function(event) {
			$('a.navHeader').css({textDecoration: 'none'}).animate({opacity: 1,},highlightSpeed,"linear");
			if (slide > 0) {
				$('#nav').animate({
					height: '69px',
				}, 200, "linear").css('z-Index','1000');
				$('ul.navSubCat').slideUp(200);
				$('.buttons p').text('X');
				slide = 0;
			}
		}
	});
});
