﻿/*
---------------------------------------------
Enables Lightbox on all a tags that have
rel='lightbox' this function is used on 
the search result page.
---------------------------------------------
*/
Websajt.Plugins.Lightbox.MyImagesPhotos = function() {
$('table.image td a[@rel*=lightbox]').lightBox();
}

Websajt.Plugins.Lightbox.EventPhotos = function() {
    $('.photo a[@rel*=lightbox]').lightBox();
}

Websajt.Plugins.Cycle.Startpage = function(CycleSpeed, CycleEffect, SlideArea) {
    $(document).ready(function() {
        $(SlideArea).cycle({
            fx: CycleEffect,
            speed: 500,
            timeout: CycleSpeed
        });
    });
}
