$(document).ready(function() {
	$("#special ul li").each(function() {
		$(this).children("a.special-button").attr('href', 
			$(this).find(".special-img a").attr('href')
		);	
		$(this).bind('mouseenter', function() {
			$(this).siblings("li.active").removeClass('active');
			$(this).addClass('active');
		});
	});
});
