jQuery(function($){
	$("#contentMenu").lavaLamp({
		fx: "backout",
		speed: 700
		/*click: function(event, menuItem) {
			return false;
		}*/
	});
	
  $('.autoEmpty').each(function(){
	   var defaultValue = $(this).val(); 
	   $(this).focus(function(){
		  if($(this).val() == defaultValue){
			  $(this).val(''); 
		  } 
	   });
	   $(this).blur(function(){
		  if($(this).val() == ''){
			  $(this).val(defaultValue); 
		  } 
	   });
   });
   
});
