jQuery(document).ready(function(){
				jQuery("#Hidden").load("includes/blocs.ajax.contentloader.php?QuoteForms=1");
				jQuery("#Pulldown").click(
						function(){	
							jQuery("#Hidden").slideToggle("slow");
						});
				jQuery("#Pulldown2").click(
						function(){	
							jQuery("#Hidden").slideToggle("slow");
						});   
				var tabContainers = jQuery('div.tabs table td > div');
    
				jQuery('div.tabs table td ul.tabNavigation a').click(function () {
					tabContainers.hide().filter(this.hash).show();
					
					jQuery('div.tabs table td ul.tabNavigation a').removeClass('selected');
					jQuery(this).addClass('selected');
					
					return false;
				}).filter(':first').click();
			});
