// JavaScript Document

function doClear(theText) {
     if (theText.value == theText.defaultValue) {
         theText.value = ""
     }
 }
$(function(){
	var zIndexNumber = 1000;
					$('li').each(function() {
						$(this).css('z-Index', zIndexNumber);
						zIndexNumber -= 10;
					}); 
					
    $("ul li.specials").hover(function(){
    
        $(this).addClass("hover");
        $('ul:first',this).css('display', 'block');
    
    }, function(){
    
        $(this).removeClass("hover");
        $('ul:first',this).css('display', 'none');
    
    });
    
});


