// JavaScript Document

current=1;
function showOptions(id){
	var div = document.getElementById("faq-title"+id);
	var curDiv = document.getElementById("faq-title"+current);
	curDiv.style.display="none";
	div.style.display="block";
	current=id;
}

curStory=1;
function show_story(id){
	if(curStory!=id)
	{
		$('#business-accordion-content'+curStory).hide();
		$('#business-accordion-content'+id).show(400);
		
		document.getElementById('plus'+curStory).src='images/plus.gif';
		document.getElementById('plus'+id).src='images/spacer.gif';
	
		curStory=id;
	}
}

$(document).ready( function() {
	//$(".video").click(function() {
	//	$(".hide").hide();
	//	$("#show-"+this.id).show();
	//	return false;
	//})
  
});
