$(function() {
  
	//HOMEPAGE CAROUSELS
	
	$(".home-carousel-main").jCarouselLite({
        btnNext: "#home-carousel-main-wrapper .next",
        btnPrev: "#home-carousel-main-wrapper .prev",
		easing: 'easeInOutCubic',
		// start: 3,
		speed: 800,
		auto: 5000

	 });
	
	
	
	
	
	$(".news-carousel").jCarouselLite({
        btnNext: "#secondary-carousel-left .next",
        btnPrev: "#secondary-carousel-left .prev",
		easing: 'easeInOutCubic',
		start: 3,
		speed: 600
		


    });
	
	$(".work-carousel").jCarouselLite({
        btnNext: "#secondary-carousel-center .next",
        btnPrev: "#secondary-carousel-center .prev",
		easing: 'easeInOutCubic',
		start: 3,
		speed: 600
		

    });
	
	
	$(".agenda-carousel").jCarouselLite({
        btnNext: "#secondary-carousel-right .next",
        btnPrev: "#secondary-carousel-right .prev",
		easing: 'easeInOutCubic',
		start: 3,
		speed: 600
    });
	
	
	//SIDEBAR CAROUSELS
	
	$(".news-carousel").jCarouselLite({
        btnNext: "#sidebar-news-carousel .next",
        btnPrev: "#sidebar-news-carousel .prev", 
		easing: 'easeInOutCubic',
		start: 3,
		speed: 600


    });
	
	
	$(".agenda-carousel").jCarouselLite({
        btnNext: "#sidebar-agenda-carousel .next",
        btnPrev: "#sidebar-agenda-carousel .prev",
		easing: 'easeInOutCubic',
		start: 3,
		speed: 600


    });
	
	
	$(".work-carousel").jCarouselLite({
        btnNext: "#sidebar-work-carousel .next",
        btnPrev: "#sidebar-work-carousel .prev",
		easing: 'easeInOutCubic',
		start: 3,
		speed: 600


    });
	
	
	//WORK LISTING TITLES
	$(document).ready(function(){
    
		$(".work-listing-title").hide();
		$(".work-listing").live('mouseover', function(){
		
		$(this).find('div.work-listing-title').show();
		}).live('mouseout', function() {
			$(this).find('div.work-listing-title').hide();
		});

 	});


	//CASE STUDY CAROUSEL
	$("#work-carousel-main").jCarouselLite({
        btnNext: "#case-study-carousel-wrapper .next",
        btnPrev: "#case-study-carousel-wrapper .prev",
		easing: 'easeInOutCubic',
		speed: 800

	 });
	
	
	//GALLERY CAROUSEL
	$("#gallery-carousel-inner").jCarouselLite({
        btnNext: "#gallery-carousel-wrapper .next",
        btnPrev: "#gallery-carousel-wrapper .prev",
		easing: 'easeInOutCubic',
		speed: 600

	 });
	
	
	
	// HACK
	$('.item-title').show();
	
	$(".web-slides").hover(
    	function () {
        $(".web-controls").fadeIn("fast");
		setTimeout(function(){ $(".web-controls").fadeOut('slow'); }, 2000);
     	}
		//,
      	//function () {
        //$(".web-controls").fadeOut("fast");
      	//}
	);
	
	
	// WEB SLIDES
	$('.web-slides').cycle({
		speed:       1, 
    	timeout:     4000,
		next:'.web-slides'
	});
	
	
	
	
	

	
	
});
