//jQuery code for this page
$(document).ready(function(){
//add show links
$('.question').each(function() {
	var id=$(this).parent().attr('id');
	$(this).wrapInner("<td><a href='#"+id+"' class='show'></a></td></tr></table>").prepend("<table><tr><td class='symbol'>&#9654; </td>");
});
$('div.answer').each(function() {
	$(this).append("<p><a href='#' class='hide'>hide</a></p>").hide();
});
if(window.location.hash!=null && window.location.hash!="" && window.location.hash!="#"){
	$(window.location.hash).children('.answer').show();
	$(window.location.hash).children('.question').children('table').children('tr').children('.symbol').html("&#9660; ");

}else{
	$('.frequently-asked').eq(0).children('.answer').show();
	$('.frequently-asked').eq(0).children('.question').children('table').children('tr').children('.symbol').html("&#9660; ");
}

$('a.show').click(function(){
$('div.answer').not($(this).parent().parent().siblings('div.answer')).hide('fast');
$(this).parent().parent().siblings('div.answer').slideToggle('fast',function(){
$('.answer:hidden').siblings('.question').children('table').children('tr').children('.symbol').html("&#9654; ");
$('.answer:not(:hidden)').siblings('.question').children('table').children('tr').children('.symbol').html("&#9660; ");
});
return false;
});
// hideLink hides the content
$('a.hide').click(function(){
$(this).parent().parent().hide('fast').siblings('.question').children('table').children('tr').children('.symbol').html("&#9654; ");
return false;
});

});

