// DropDown Menu

$(document).ready(function(){

	
	/*EXPAND COLLAPSE*/
	//Switch the "Open" and "Close" state per click then slide up/down (depending on open/close state)...
	$(".expand").click(function(){							   
		$(this).toggleClass("active").prev('.toggle_container').slideToggle("fast");
		$(this).prev().prev().find('.ellipse').toggle();
		$(this).find('.togglelabel').toggle();
	});


	//next two CSS changes are for IE (lack of CSS selector support)   
	$("div.panes > div").css('position','absolute');
	$("div.panes > div:first-child").css('display','none');
	// setup ul.tabs to work as tabs for each div dSSSirectly under div.panes
	$(".hero_section ul.tabs").tabs("div.panes > div.tab_info", {fadeOutSpeed: 400});
	
});
	
	
