jQuery(function(){
	// side features
	jQuery(".feature_120x260_button").hover(
		function() {
			jQuery(this).prev().stop();
			jQuery(this).prev().animate({bottom: "-20"}, 400);
		}, function() {
			jQuery(this).prev().stop();
			jQuery(this).prev().animate({bottom: "-146px"}, 400);
		}
	);
	jQuery(".feature_120x260_button").click(function(event){
		link = jQuery(this).parent().find(".feature_link").attr("href");
		window.location.href = link;
		//alert("Link: "+link);
	});
	// bottom features
	jQuery(".feature_220x90_button").hover(
		function() {
			jQuery(this).prev().stop();
			jQuery(this).prev().animate({bottom: "-16"}, 400);
		}, function() {
			jQuery(this).prev().stop();
			jQuery(this).prev().animate({bottom: "-78px"}, 400);
		}
	);
	jQuery(".feature_220x90_button").click(function(event){
		link = jQuery(this).parent().find(".feature_link").attr("href");
		window.location.href = link;
		// alert("Link: "+link);
	});
	// last one
	jQuery("div.feature_220x90:last").addClass('feature_220x90-last');
	
});
