$(document).ready(function() {
	
	var cookie = $.cookie('chcookie');

	if ( cookie == 'yes') {
		$('#update').hide();
	}
	
	
	//	fadeToggle set up
	jQuery.fn.fadeToggle = function(speed, easing, callback) { 
	   return this.animate({opacity: 'toggle'}, speed, easing, callback); 
	}; 
	
	// 	Annoucement hiding
	$('#announcementHide').click( function(){
		$('#update').slideToggle();	
		
		
		if( cookie !== 1){
			$.cookie("chcookie",'yes',{expires: 7, path: '/', domain: 'iamgp.com/ClimbingHost'});			
		}
		

	});
		
	//	Client Login
	$('#showClientLogin').click( function(){
		$('#client').slideToggle("slow");	
	});



	// Drop Down
	
    $('#navigation li').hover(  
        function () {  
            //show its submenu  
            $('ul', this).slideDown(100);  
  
        },   
        function () {  
            //hide its submenu  
            $('ul', this).slideUp(100);           
        }  
    );  

});