function doClear(theText) 
{
     if (theText.value == theText.defaultValue)
     {
         theText.value = ""
     }
 }
$(document).ready(function(){
	$('.breadcrumb').hover(
		function(){ $('.breadcrumb').css('overflow', 'visible').css('z-index', '200'); },
		function(){ $('.breadcrumb').css('overflow', 'hidden'); }
	);
	$('#menu_pages ul li').hover(
		function(){ 
			if(/MSIE ((5\.5)|6)/.test(navigator.userAgent) && $(this)[0]==$('#menu_pages ul li')[1]){ $('.breadcrumb').css('width', '100px'); }
			$(this).css('overflow', 'visible').css('height', 'auto').css('z-index', '1000'); 
		 }, function(){ 
			$(this).css('overflow', 'hidden').css('height', '32px');
			if(/MSIE ((5\.5)|6)/.test(navigator.userAgent)){ $('.breadcrumb').css('width', '190px');} }
	);
});
