﻿/*!
 *
 * script.js v3.0
 * Webia
 *
 * Copyright 2011, Zeno Popovici
 *
 */
$(document).ready(function() {

/* =Banners
-------------------------------------------------------------- */
        $("div.banners").scrollable({ 
            keyboard: false, 
            circular: true, 
            easing: "swing", 
            next: ".next", 
            prev: ".prev", 
            disabledClass: "disabled" 
        }).autoscroll({ 
            autoplay: false, 
            interval: 60000, 
            autopause:false 
        }).navigator({navi:".bullet-nav", indexed: false, history: true});

/* =Lightbox init
-------------------------------------------------------------- */
        $("a.lightbox").fancybox({
            'transitionIn'  :   'elastic',
            'transitionOut' :   'elastic',
            'speedIn'       :   600, 
            'speedOut'      :   200, 
            'overlayShow'   :   true,
            'opacity'       :   true,
            'overlayShow'   :   true,
            'titleShow'     :   false,
            'hideOnContentClick': true
        });
		
	
});
        

