var $j = jQuery.noConflict();

// custom easing called "custom"

$j.easing.custom = function (x, t, b, c, d) {
if (t==0) return b;
if (t==d) return b+c;
if ((t/=d/2) < 1) return c/2 * Math.pow(2, 10 * (t - 1)) + b;
return c/2 * (-Math.pow(2, -10 * --t) + 2) + b;
}

$j(document).ready(function() {
    $j(function() {
        $j("div.scrollable").scrollable({easing: 'custom', size: 1, speed: 700}).circular().navigator().autoscroll(3500);
    });
});

$j(document).ready(function() {
    $j(function() {
        $j(".inline1").colorbox({width:"60%", speed:860, inline:true, href:"#inline_more1"});
    });
});

$j(document).ready(function() {
    $j(function() {
        $j("a.zoom").fancybox({
        'overlayOpacity'	:	0.7,
        'zoomSpeedIn'		:	500,
        'zoomSpeedOut'		:	500
        });
    });
});
