$(document).ready(function(){
	$(".nav_li").hover(function(){
		$(this).addClass("hovered");
	}, function(){
		$(this).removeClass("hovered");
	});
	
	/* add a hovered class to a li to show the child ul onhover for IE6 */
	$("#navigation ul li").hover(function(){
		$(this).addClass("hovered");
	}, function(){
		$(this).removeClass("hovered");
	});

	$(".drop").hover(function(){
		$(this).prev('a').addClass("hovered");
	}, function(){
		$(this).prev('a').removeClass("hovered");
	});

	$('.tab').each(function(){
		$(this).find('a').click(function(){
			toggleTabs($(this).attr("rel"));
			$('.selected_tab').removeClass("selected_tab");
			$(this).parent().addClass("selected_tab");
		return false;
		});
	});
  
	function toggleTabs(id){
		var tar = $("#"+id+"");
		$(".tab_content").css({"display":"none"});
		tar.css({"display":"block"});
  	}
});