$(document).ready(function() {
    var slideshowLength = $('#slideshow').children().length;
    var randomStart = Math.floor(Math.random() * slideshowLength);


    $('#slideshow')
    .before('<div id="nav">')
    .cycle({
        fx: 'uncover',
        speed: 1500,
        timeout: 5000,
        pager: '#nav',
        autostop: 3,
        pause: 1,
        startingSlide: randomStart,
        pagerAnchorBuilder: function(index, el) {
            return '<a href="#"></a>';
        }
    });


    // Tabs
    var $tabs = $('#tabs').tabs();


	$('#tabs-case-studies a').click(function() {
		var link = $(this).attr("class");
        // bind click event to link
        $tabs.tabs('select', link);
        // switch to the clicked tab
        return false;
    });



});

