var $j = jQuery.noConflict();

$j(document).ready(function(){
		
	$j("#navigation").treeview({
		animated: "fast",
		persist: "location",
		collapsed: true,
		unique: true
	});
	
	var titleStr = $j("title").html();
	if (titleStr == "Home | TNT Tours")
	{
	   //alert(titleStr);
	   $j("#home_menu").find("a").addClass("selected");	
	}
	
        $j(document).ready(function(){
				
	// Online booking validation
	if ( $j("#destination_id").val() && $j("#cost_id").val() )
	{
		$j("#bookTourEvent").show();
	}
	else
	{
		$j("#bookTourEvent").hide();
	}
});

	
});
