// JavaScript Document

$(function() {
		   $('.jcarousel-skin-tango a').hover(
			function() {
				$(this).prev().css('color','#d23101');
			},
			function() {
				$(this).prev().css('color','');
			});
		   });
