<!--

					
function faq(obj){
	
	var el = $(obj).next()[0];
	if (el && el.className == 'answer'){
		$(el).toggle();
		faq(el);
	}
	
	
}


$(document).ready(function(){
	$("p.question").bind("click", function(obj){						  
	 	faq(this);
	});
	
	
	$(".maincontent img").each(function(){	
		if ($(this).css('float') == 'right')			$(this).css('margin', "0 0 20px 20px");
        else if ($(this).css('float') == 'left') 		$(this).css('margin', "0 20px 20px 0");
	});	
	
});


function swap(src,cls) {
	src.className = cls;
}

function show(s,h) {
	document.getElementById(s).style.display = "block";
	document.getElementById(h).style.display = "none";
}




// -->