// index.js

$(document).ready(function() {			

	// Add 'emptying' action to newsletter subscribtion form
	$('#newsletter_email').focus(focusSubscription);

	if($("#recommendationsCarousel")) {

		var numoflis = $("#recommendationsCarousel").find('li').length;
		if(numoflis>1) {
		    $("#recommendationsCarousel").jcarousel({
		        start: 1,
		    	scroll: 1,
		        auto: 3,
		        vertical: true,
		        animation: 400,
		        wrap: 'circular',
		        buttonNextHTML: null,
		        buttonPrevHTML: null
		    });			
		}
		
	}
	
});
