$(document).ready(function(){
$(".topMenu li").mouseover(function() {
		$(this).addClass('hover');
});
$(".topMenu li").mouseout(function() {
		if($(this).attr('class') != 'selected'){
		$(this).removeClass('hover');
		}
});
$(".faqMore a").click(function() {
	if($("#el_" + $(this).attr('id')).css('display') == 'none'){
		$("#el_" + $(this).attr('id')).load($(this).attr('rel'));
	}
		
	$("#el_" + $(this).attr('id')).toggle();
	return false
});


}); 


