function clearText(thefield){
if (thefield.defaultValue==thefield.value)
thefield.value = ""
}



$(document).ready(function(){
$("ul.CMSListMenuUL").superfish({ 
        delay:      500,                            // one second delay on mouseout 
        animation:  {opacity:'show',height:'show'}  // fade-in and slide-down animation 
     }); 
     
      $('#fade1').cycle({
		fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});
	

$("body.EditMode div.panes div").removeClass("tbcnt");
$("div.tabs").tabs(".panes > div.tbcnt", { 
 
        // enable "cross-fading" effect 
        effect: 'fade', 
        fadeOutSpeed: 'slow', 
 
        // start from the beginning after the last tab 
        rotate: true 
 
    // use the slideshow plugin. It accepts its own configuration 
    }).slideshow({autoplay: true, interval: 10000});
    

    
       $(".fancy tr").mouseover(function(){$(this).addClass("over");}).mouseout(function(){$(this).removeClass("over");});
       $(".fancy tr:even").addClass("alt");
       
      
    

});

	



