(function($) { 
    $(document).ready(function($) {  

	// flash
	$('#flashbanner').flash({    
        swf: '/top-banner.swf', 
		height: 88,
		width: 650,
        wmode: 'transparent'
      //  flashvars: {   name1: 'jQuery'   }   
    });
	
    // dropdowns
     $('.signup').hide();
     $('.productsdd').hide();
     $('.programsdd').hide();
     
     $('#btn-signup').click(function(){
         $('.signup').slideToggle();
    	 return false;
       });
    
    // find products
     $('.findproducts').click(function(){
         $('.productsdd').slideToggle();
    	 return false;
       });
     
    // annual programs
      $('.annualprograms').click(function(){
         $('.programsdd').slideToggle();
    	 return false;
       });
     
       $(".flow a").each(function(element){
            $(this).bind('click', function(){
                return false;
            })
        });
		
		
    }); // end ready
})(jQuery); // because of the frameworks clashing
