$(document).ready(function() {

$("ul#navi li div.smallhov").append("<div style='clear:both;background:url(http://uniseo.com/images/menu-gradient2.png) bottom left no-repeat;padding-top:2px;height:12px;width:137px;'></div>");
$("ul#navi li div.bighov").append("<div style='clear:both;background:url(http://uniseo.com/images/foot.png) bottom left no-repeat;padding-top:2px;height:12px;width:673px;'></div>");



$("ul#navi li").hover(
      function () {
        $("ul#navi li div.nav_menu:animated").fadeOut("fast");
        $(this).children("div.nav_menu").fadeIn("fast");
      }, 
      function () {
        $(this).children("div.nav_menu").fadeOut("slow");
      }
    );

	
	// this block is for the Get A Quote Contact Box
	$("#phone,#email").hide();
	$("#quotebox").toggle(function () {
	        $("#contactbox").slideDown("medium");
 	     },
	      function () {
	        $("#contactbox").slideUp("medium");
	      }
	
	  );

});