$(document).ready( function(){

    if ($(".fb").length > 0){
        $(".fb").fancybox({ 
        'zoomSpeedIn'	: 300, 
        'overlayColor'	: "#000000", 
        'overlayOpacity': 0.9, 
        'zoomSpeedOut'	: 300, 
        'overlayShow'	: true 
        }); 
    }

    // functions for product page
    $('.thumb_button').click( function(){
        //swap thumb first
        var elm = $(this);
        var thumb = $(this).attr('id').replace('thumb_','');
        $('#prod_image').attr('src', imagesToPreload[thumb]);
        $('#enlargeLink').
        attr('href', $(elm).attr('href')).
        attr('title', $(elm).attr('title'));
    });
    //setFancyBoxLink(0);
    if ($('#enlargeLink').length > 0) {
        $('#enlargeLink').fancybox();
    }
    
/*    $('.expand').click( function(){
        var theul = $(this).parent().find('ul:first');
        $(theul).slideToggle();    
        return false;
    });
*/
    if (document.getElementById("login_main")) {
        $("#login_main").validate();
    }
    if (document.getElementById("poll-vote")) {
        $("#poll-vote").validate();
    }
});

