//do the tabbing (once the dom has loaded!)
$(document).ready(function(){
//	tab switching
	$("ul#production-info-tabs li").click(function(){
		if (!$(this).hasClass("selected"))
		{
			$("ul#production-info-tabs li").removeClass("selected");
			$(this).addClass("selected");
		
			$("div.tab-panel").removeClass("selected");
			//work out the tab to show
			$(".tab-panel." + $(this).attr("id")).addClass("selected");
			
			if ($(this).hasClass('reduced-width'))
			{
				$("#group-content-and-related").addClass("reduced-width");
			}
			else
			{
				$("#group-content-and-related").removeClass("reduced-width");
			}
		}
		return false;
	});
});
