
/*overstate*/
$(document).ready(function() {

    // dropdown menus        
    $("#nav").find("li").filter(function() {
	return ($(this).children(".subnav").length > 0);
    }).hover(function() {
	$(this).children(".subnav").show();
	$(this).children("a").addClass("selected");	    
    }, function() {
	$(this).children(".subnav").hide();
	$(this).children("a").removeClass("selected");
    });
    
    $('.subnav > div:nth-child(5n)').css('margin-right', '0px');
    $('#home-offers > div:nth-child(2n)').css('margin-right', '0px');
    $('#boiler-packs > div:nth-child(3n)').css('margin-right', '0px');
    
    $("#features tr:odd").css('background', '#e9e9e9');
    
    //cufon
    Cufon.replace('h1 span');
});

