$(document).ready(function(){
	$('#slides').cycle({
		fx: 'fade',
		speed: 1000,
		timeout: 6000
	});
				
	// init
	$('ul.sf-menu').superfish();
	$('body').supersleight({shim: './images/header/x.gif'});
	
	// page url taken from the last '/ '
	var path = location.pathname.substring(location.pathname.lastIndexOf("/") + 1);
	
	if (path == ""){		
		// highlight home button
		$('ul.sf-menu li a[href$="index.html"]').parent('li').addClass('active-tab');
		// deactivate products menu links
		$('ul.sf-menu li#products-menu').addClass('default-tab');
		$('ul.sf-menu li#products-menu ul li').addClass('default-sub-menu');
	} else {	
		// adds active class to current page link
		var currLink = $('ul.sf-menu li a[href$="' + path + '"]');
		$(currLink).parent('li').addClass('active-tab');
	}
	
	// add active class to Employment
	if (path == "application_form.html"){
		$('#top ul li#employment').addClass('active-tab');
	}
	
	// add active class to Products
	var productLink = $('ul.sf-menu li ul li a[href$="' + path + '"]');
	$(productLink).parents('li').addClass('active-tab');

	
	// Secondary Navigation
	if ($('body').hasClass('home')){
						   
		  $('#nav-1').hoverIntent(function() {
			  $('#nav-1').animate({ top : "-90px" }, 'normal');            
		  }, function() {
			  $('#nav-1').animate({ top : "0px" }, 'normal');
		  });
		  
		  $('#nav-2').hoverIntent(function() {
			  $('#nav-2').animate({ top : "-110px" }, 'normal');            
		  }, function() {
			  $('#nav-2').animate({ top : "0px" }, 'normal');
		  });
		  
		  $('#nav-3').hoverIntent(function() {
			  $('#nav-3').animate({ top : "-90px" }, 'normal');            
		  }, function() {
			  $('#nav-3').animate({ top : "0px" }, 'normal');
		  });
	}
	
});