
$(document).ready(function() {		
		
	// initialize scrollable with mousewheel support
	$(".scrollable").scrollable({ vertical: true, mousewheel: true });
	$('.slidedeck').slidedeck();
	
	
});

$(function() {
	$('dl.slidedeck dd').hover(
		function() {
			$('dl.slidedeck dd.active .caption').stop().animate({
				'left':'40px'
			},200)
			$('dl.slidedeck dd.active .caption-text').stop().animate({
				'left':'40px'
			},200)
		},
		
		function() {
			$('dl.slidedeck dd.active .caption').stop().animate({
				'left':'-150px'
			},200)
			$('dl.slidedeck dd.active .caption-text').stop().animate({
				'left':'-150px'
			},200)
		}
	)
	
});


