// This function toggles the featured portfolio using #portfolio_toggle




jQuery(document).ready(function(){ 

	jQuery("#introduction_more p").hide();
	    
	jQuery("p.what").click(function(){explain()}); 
    jQuery("p.ok").click(function(){hideexplain()}); 
    


    
    
    function explain() {
    	    jQuery("#interest_form").animate({opacity:0}).hide();
    		jQuery("#introduction_more p").show();
            jQuery("#introduction_more").show();
            jQuery("#introduction_more").css("margin-left","35px");
            jQuery("#introduction_more").animate({width:'510px',opacity:1});
            
    }
    
        
    function hideexplain() {
			
            jQuery("#introduction_more").animate({width:'0px',opacity:0});
            jQuery("#introduction_more").queue(function () {
                jQuery("#introduction_more p").hide();
                jQuery("#interest_form").show().animate({opacity:1});
                jQuery(this).dequeue();
                });
           
    }

});


