	// JavaScript Document
$(document).ready(function(){
	
	//variables
	var isSubNavOpen = false;
	
	var subNavHtmlHome = "<div id='title'>home</div><a href=\"companyFactSheet.php?page=fsheet\">company fact sheet</a><a href=\"distributors.php?page=distributors\">distributors</a><a href=\"governmentAffairs.php?page=govAffairs\">government affairs</a>";
	
	var subNavHtmlProduct = "<div id='title'>products</div><div class='container'><a href=\"catalogue.php?page=cat\">catalog</a><a style='margin-left:15px;margin-top:3px;font-size:9px;' a href=\"orTowels.php?page=or\">O.R. towels</a><a style='margin-left:15px;margin-top:3px;font-size:9px;' a href=\"protectiveApparel.php?page=pa\">protective apparel</a></div><div class='container'><a>cross reference</a><a style='margin-left:15px;margin-top:3px;font-size:9px;' a href=\"crossReferenceOR.php?page=orcr\">O.R. towels</a><a style='margin-left:15px;margin-top:3px;font-size:9px;' a href=\"crossReferencePA.php?page=pacr\">protective apparel</a></div><div class='container' ><a href=\"featuredProduct.php?page=featured\">featured product</a><a href=\"newProduct.php?page=new\">new product</a><a href=\"comingSoon.php?page=coming\">coming soon</a></div>";
	
	var totalSlides = 3;
	var currentSlide = 1;
	var nextSlide = currentSlide +1;
	
	
	
	
	
	//buttons
	$('#home_btn,#homeArrow').mouseover(function(){
		$('#subNav').empty();
		$('#subNav').append(subNavHtmlHome);
		$('#subNav').css('left','380px');
		$('#subNav').css('height','100px');
		
		if(!isSubNavOpen){
		$('#subNav').slideDown('fast');
		isSubNavOpen = true;
		
		}
		
	});
	
	$('#product_btn,#productArrow').mouseover(function(){
		$('#subNav').empty();
		$('#subNav').append(subNavHtmlProduct);
		$('#subNav').css('left','469px');
		$('#subNav').css('height','195px');
		
		if(!isSubNavOpen){
		$('#subNav').slideDown('fast');
		isSubNavOpen = true;
		
		}
		
	});
	
	$('#news_btn').mouseover(function(){
		if(isSubNavOpen){
			closeSubNav();
		}
	});
	
	$('#contact_btn').mouseover(function(){
		if(isSubNavOpen){
			closeSubNav();
		}
	});
	
	
	$('#subNav').mouseleave(function(){
		if(isSubNavOpen){
			closeSubNav();
		}
	});
	
	
	
	
	//functions
	function closeSubNav(){
		$('#subNav').slideUp('slow');
		isSubNavOpen = false;
	}
	
	
	function timer(t){
			var time = setTimeout(slider,t);	
		}//end of timer
	
	//initiate timer
	timer(8000);
	
	//function for slider box up front
	function slider(){
		var currentS = "slider"+currentSlide;
		var nextS = "slider"+ nextSlide;
		
		$('#'+currentS).animate({top: '55px'}, 1000, function() {
			     
				$('#'+nextS).animate({top: '0px'}, 1000,function(){
					
					currentSlide = nextSlide;
					nextSlide++;
					
					if(nextSlide >totalSlides){
						currentSlide = nextSlide-1;
						nextSlide = 1;
					}
					
				});
				
				
  		});
		
	
		timer(8000);
	
	}//end of slider



});
