﻿function fbs_click() { u = location.href; t = document.title; window.open('http://www.facebook.com/sharer.php?u=' + encodeURIComponent(u) + '&t=' + encodeURIComponent(t), 'sharer', 'toolbar=0,status=0,width=626,height=436'); return false; }

var submitStf = function() {

    var form = $("#form-stf");
    $.post(form.attr("action"), form.serialize(), function(response) {

        if (!response.success) {

            $(".modal-error").removeClass("icon");
            $(response.errors).each(function() {

                $("#" + this).addClass("icon");

            });

        }
        else {

            $("#modal-title, #form-stf").remove();
            $("#modal-message").show();

        }

    }, "json");

    return false;

}

$().ready(function() {

    $('#slideshow-images').innerfade({ speed: 'slow', timeout: 4000, type: 'sequence', containerheight: '220px' });

    $('a.lightbox').lightBox();


});