$(document).ready(function(){
	//accordian menus with dropdown content	
	$("div.dropdownSlider").css({ display:'none' });
	$("div.dropdownSlider.open").slideToggle(300);
	$("a.dropLink").click(function()	{
		$(this).parent().children("a.open").addClass("closeThis");
		$(this).next("div.dropdownSlider").slideToggle(300).siblings("div.dropdownSlider").slideUp("slow");
		$(this).addClass("open");
		$(this).siblings().removeClass("open");					
		$(this).parent().children("a.closeThis").removeClass("open").removeClass("closeThis");
		$(this).parent().children("a.deselect").removeClass("open");
	});	
});
