$(document).ready(function(){
	
//Add persistance to menu
$("ul.menu").supersubs({ 
            minWidth:    12,   // minimum width of sub-menus in em units 
            maxWidth:    27,   // maximum width of sub-menus in em units 
            extraWidth:  1     // extra width can ensure lines don't sometimes turn over 
                               // due to slight rounding differences and font-family 
        }).superfish({ 
           hoverClass:    'sfHover',          // the class applied to hovered list items
					 delay:       500,                            // one second delay on mouseout 
					 autoArrows:    true,               // if true, arrow mark-up generated automatically = cleaner source code at expense of initialisation performance 
           dropShadows:   true,
					 animation:   {opacity:'show',height:'show'},  // fade-in and slide-down animation 
            speed:       'fast',                          // faster animation speed  
        });

$("#cforms2form .cf-fs4 , #cforms2form .cf-fs5 , #cforms2form .cf-fs6").addClass('cf_hidden');


$("#cforms2form .cf-fs3").after($("p#make_vis"));
var counter = 2;
$("p#make_vis").click(function() {
	if(counter == 2)
{
	$("#cforms2form .cf-fs4").removeClass('cf_hidden');
	$("#cforms2form .cf-fs4").after($("p#make_vis"));
	}
	if(counter == 3)
{
	$("#cforms2form .cf-fs5").removeClass('cf_hidden');
	$("#cforms2form .cf-fs5").after($("p#make_vis"));
}
	if(counter == 4){
	$("#cforms2form .cf-fs6").removeClass('cf_hidden');
	$(this).addClass('hidden');
	}
counter++;
});






});//doc ready

 




