var _jcarouselPath = pluginPath('jcarousel'); //getYoxviewPath();

pluginLoad(_jcarouselPath + "jquery.jcarousel.min.js");
pluginCSS(_jcarouselPath + 'tango/skin.css');

$(document).ready(function() {
	$('#carouselItems').jcarousel();
	$('.carouselItem a').hover(function(){
	    var distance = $(this).outerWidth();
	    $(this).find('img').animate({ opacity : '0' },{queue:false,duration:500});
	}, function(){
	    $(this).find('img').animate({ opacity : '1' },{queue:false,duration:500});
	});
});

