$(document).ready(function(){
    
	$('#cycle').cycle({
	speed:  400,
	timeout: 0,
	next:   'p#next a'
	});
	$('.home_item_size1').jScrollPane({showArrows:true, scrollbarWidth:11,reinitialiseOnImageLoad: true});
	//$('.HomeItemSize2').jScrollPane({showArrows:true,scrollbarWidth:11,reinitialiseOnImageLoad: true});
        //$('.HomeItemSize3').jScrollPane({showArrows:true,scrollbarWidth:11,reinitialiseOnImageLoad: true});
        //$('.HomeItemSize4').jScrollPane({showArrows:true,scrollbarWidth:11,reinitialiseOnImageLoad: true});
        $('.sector_item').jScrollPane({showArrows:true,scrollbarWidth:11,reinitialiseOnImageLoad: true});
        $('.news_item').jScrollPane({showArrows:true,scrollbarWidth:11,reinitialiseOnImageLoad: true});
	
	$("#cycle img").click(
        function(){ 
        	$("#cycle").cycle('next');}
    );

	
	$(".overview div").hover(
      function () {
        $('h3 a',this).addClass('active');
      },
      function () {
        $('h3 a',this).removeClass('active');
      }
    );
});


