$(function(){
    //hover states on the static widgets
    $('ul.price li').hover(
        function() { $(this).addClass('ui-state-hover'); },
        function() { $(this).removeClass('ui-state-hover'); }
        );

    $('.submit').hover(
        function() { $(this).addClass('submit-hover'); },
        function() { $(this).removeClass('submit-hover'); }
    );

    $("a.preview").fancybox({ 'hideOnContentClick': true , 'overlayShow': false });
});
