//<![CDATA[            
jQuery(function(){ 
       $('#imgKey').hide();  
	   
       $('a.showKey').click(function() { 
	   $('#imgKey').show('slow'); 
	      return false; 
		  });
	   
	    $('a.showKey').click(function() { 
		$('#imgKey a.showKey').addClass('showKey2');
        $(this).toggleClass('showKey2'); 
		  });	
		
        $('a#hideKey').click(function() { 
		$('#imgKey').hide('medium'); 
		   return false;
		   });
	   
	    $('a#hideKey').click(function() { 
		$('a.showKey2').removeClass('showKey2');
           });
});
    //]]>
	
	
jQuery(function(){
     $('#roomzList').hide();

     $('a#showhide').click(function() {
     $('#roomzList').toggle(400);
	 $(this).toggleClass('showKey2'); 
	  $('#roomz').toggleClass('linez');
       return false;
       });	   
});
