function doClear(theText) 
{
     if (theText.value == theText.defaultValue)
 {
         theText.value = ""
     }
 }
$(document).ready(function(){
	$('.breadcrumb').hover(
		function(){ $('ul', this).show(); },
		function(){ $('ul', this).hide(); }
	);
});
