$(document).ready(function()
{
   $(function() {
   		$("#imageslider").jCarouselLite({
        	btnNext: "#next",
        	btnPrev: "#prev",
			visible: 1,
			easing: 'easeInOutQuad',
			speed: 900,
			afterEnd: function(a)
			{ 
                              var $liElement = $(a.get(0).innerHTML);
                              $anchor = $liElement.get(0);
                              $('#goto').attr('href', $anchor);
			}
    	});
	});
	
	$(function() {
   		$("#textslider").jCarouselLite({
        	btnNext: "#next",
        	btnPrev: "#prev",
			visible: 1,
			easing: 'easeInOutQuad',
			speed: 900,
			vertical: true
    	});
	});
		
	$('a').focus(function()
	{
		$(this).blur();
	});
        
});
