$(document).ready(
function() {
    $('#product_list > li')
    .click(function() { 
        var elm = $(this); 
        $('.pricing_container').hide();  
        $("#" + elm.attr('title') + "_pricing").show().find("h3").effect('highlight',{'color':'#BBD8E9'}, 1000)  
        elm.removeClass('hover_product').addClass('select_product').siblings().removeClass('select_product');
    })
    .hover(function() {$(this).addClass('hover_product');}, function() {$(this).removeClass('hover_product');})
    .filter(':first').click();
});