﻿/*
jCarousel.js
---------------------------------------------------------------------*/
jQuery(document).ready(function() {
    jQuery('#mycarousel').jcarousel({
        vertical: true,
        size :4,
        scroll: 1
    });
});

/*
tabs.js
---------------------------------------------------------------------*/
$(function () {
        var tabContainers = $('div.tabs div');
        tabContainers.hide().filter(':first').show();
        
        $('div.tabs ul.tabNavigation a').click(function () {
                tabContainers.hide();
                tabContainers.filter(this.hash).show();
                $('div.tabs ul.tabNavigation a').removeClass('selected');
                $(this).addClass('selected');
                return false;
        }).filter(':first').click();
});

/*
jquery.prettyPhoto.js
---------------------------------------------------------------------*/
$(document).ready(function(){
  $(".gallery a[rel^='prettyPhoto']").prettyPhoto({theme:'light_rounded'});
});
