(function($) {
	$().ready(function(){
		$('.jcarousel-next-horizontal').bind('mouseenter', function() {
			$(this).addClass('jcarousel-hover');
		}).bind('mouseleave', function() {
			$(this).removeClass('jcarousel-hover');
		}).bind('mousedown', function() {
			$(this).addClass('jcarousel-active');
		}).bind('mouseleave', function() {
			$(this).removeClass('jcarousel-active');
		})
		
		$('.jcarousel-prev-horizontal').bind('mouseenter', function() {
			$(this).addClass('tfecarrousel-hover');
		}).bind('mouseleave', function() {
			$(this).removeClass('jcarousel-hover');
		}).bind('mousedown', function() {
			$(this).addClass('jcarousel-active');
		}).bind('mouseleave', function() {
			$(this).removeClass('jcarousel-active');
		});
	});
})(jQuery);