jQuery.noConflict();

jQuery(document).ready(function() { 

//THIS IS TO MAKE IE LIKE OUR MAIN TOP MENU
//First we need to make get the nav2 element
//Then we add or remove a class depending on hover state
jQuery("#nav2 ul li").hover(              
	function(){
		jQuery(this).addClass("over");
	},
	function(){
		jQuery(this).removeClass("over");
	}
);
//THIS IS TO MAKE THE LEFTNAV WORK
//get the list items and attach onClick function
//if we have other sublist show hide them
//open the sublist of the clicked list item and apply a new class to change the bullet images
/*
jQuery("#leftNav ul li").not("#leftNav ul li ul li").click(function () {
	
	classAttr = jQuery(this).attr('class');
		jQuery("#leftNav ul li ul:visible").parent().removeClass("open");
		jQuery("#leftNav ul li ul:visible").hide();
		if ( classAttr != 'open' ) {

		jQuery(this).addClass("open");
		jQuery(this).children().show();
	} 
	} 
	
);
*/
	
});

function click_ln ( ln_id ) {
	jQuery("#"+ln_id).addClass("open");
	//jQuery("#"+ln_id).children().slideDown("slow");
	jQuery("#"+ln_id).children().show();
}


