$j(document).ready(function(){
/*
	$j("ul.vertNav li a").click(function(){
		$j(this).next("ul").slideToggle(200);
	});
*/

  var activePaths = {
    'land-trampolines': 'n2',
    'parts-accessories': 'n4', 
    'faq-videos': 'n5', 
    'compare-to-competitors': 'n6', 
    'shipping-policy': 'n7'
  };

	$j('.horiznav a, .foot .nav a').hover(
		function(e){
			$j(this).addClass('here');
		},
		function(e){
      for(i in activePaths) {
        if($j(this).hasClass(activePaths[i]) && i == pathParts[0]) {
          return false;
        }
      }
      
      $j(this).removeClass('here');
		}
	);

  for(i in activePaths) {
    if(i == pathParts[0]) {
      $j('.horiznav .' + activePaths[i]).addClass('here');
    }
  }
});
