$(function(){ var header = $("#header"); $("li:has(.sub)").hover(function () { header.css("height","85px"); }, function () { header.css("height","auto"); }); });