$(document).ready(function(){

	$('#menu table td.has_sub .sub ul li a span span').textShadow();
	
	$('#menu table td.has_sub .rel').hover(function(){
		$(this).children('a').addClass('opened');
		$(this).children('.sub').css('display', 'block');
		$('#menu table td.has_sub .rel > a > span > span').textShadow();
		$('#menu table td.has_sub .sub ul li a span span').textShadow();
	}, function() {
		$(this).children('a').removeClass('opened');
		$(this).children('.sub').css('display', 'none');
		$('#menu table td.has_sub .rel > a > span > span > .jQueryTextShadow').css('display', 'none');
	});
	
	$('.jcarousel').jcarousel({
    	wrap: 'circular',
		scroll: 1
    });
	
	$('.jcarousel-item').each(function(){
    	$(this).css('width', function(){
			var width = Math.floor(($('.jcarousel-clip-horizontal').width())/3) - 1;
			return width;
		});
    });

});
