// accordionReady
$(document).ready(function()
{
// for when js is disabled
$("div.menu_body").hide();
//choose which element to show on load
	//$(".menu_body:eq(0)").show();
	//$("h4.menu_head:eq(0)").toggleClass('menu_head_down');
//set the open div chev to down
$('div.menu_head').click(function() {
$(this).toggleClass('menu_head_down');
});	
	
//slides the element with class "menu_body" when paragraph with class "menu_head" is clicked 
	$(".firstpane h4.menu_head").click(function()
    {
//toggle the arrow
		$(this).toggleClass('menu_head_down');
		$(this).next("div.menu_body").slideToggle("fast").siblings("div.menu_body").slideUp("fast");
		$(this).siblings("h4.menu_head_down").toggleClass('menu_head_down');
	});
});


//tabs highlighting
$(document).ready(function() {	   
	$('#tabs ul li:eq(0)').addClass('active');
		$('#tabs ul li a').click(function(){ 
		$('#tabs ul li').removeClass('active');
		$(this).parent().addClass('active');
		});
});


//
$(document).ready(function(){
$("#container .issueTrackerWrap p").wrapAll('<div class="speech-bub-bg"></div>');
});
