jQuery(document).ready( function(){

    // Remove footer separator
    jQuery('.footer ul > li:first').addClass('first');
    
    // Remove first dt top border
    jQuery('.product-options dt:first').addClass('first');
    jQuery('.product-options dd:first').addClass('first');
    

    jQuery(".howtopdf[rel]").overlay({

    	mask: '#000',
    	effect: 'apple',
    	top: 10,

    	onBeforeLoad: function() {

    		// grab wrapper element inside content
    		var wrap = this.getOverlay().find(".contentWrap");

    		// load the page specified in the trigger
    		wrap.load(this.getTrigger().attr("href"));
    	}

    });

});
