window.onload =  function () {
	
		getAJAX = getHTTPObject(); 
	
	 $("#faqbox li a, a.fancy, #currentURL li.mail a").fancybox({
				'titlePosition'		: 'none',
				'width'						: '75%',
				'height'					: '85%',
				'overlayOpacity'	: '0.2',
        'autoScale'     	: false,
        'transitionIn'		: 'fade',
				'transitionOut'		: 'fade',
				'type'						: 'iframe'
			});
	
	 jQuery('#searchstring').val('').toggleVal({
			populateFrom: 'title',
				removeLabels: true,
				focusClass: 'focused'
		});			
		
		jQuery("div.a").hide(); 
		jQuery("h5.q").click(function(){
			jQuery("div.a").hide('slow'); 
			jQuery(this).toggleClass("active").next().slideToggle("slow");
			return false; //Prevent the browser jump to the link anchor
		});

}


