/*-----------------------------------------------------------------------------

    Falken Creative : V.2 Javascript Actions

    author:    Ben Falk
    email:     info(at)falkencreative.com
    website:   www.falkencreative.com  
    
    Currently implements a variety of jQuery plugins, including:
    
      -- Thickbox (screencasts)
      -- Lightbox (portfolio)
      -- Media (embedding flash)
      -- Metadata (embedding flash)

-----------------------------------------------------------------------------*/



/*  jQuery Actions
	------------------------------------------------------------------------- */
$(document).ready(function() {


	
	/* Header Client Slider */				
	$(".headerslider").click(function() {
		$("#client").slideToggle('1000','');
		$(this).toggleClass("selected");
	});
	
	
	
});