$(function() {
	$("#feature_bricks li").hover(
		function () {
		    if(! $(this).hasClass("selected")) {
				$(this).find(".image").animate({opacity: 0.35}, 80);
				$(this).find(".label").animate({opacity: 0.35}, 80);
				$(this).find(".description").animate({opacity: 0.35}, 80);
			}
		}, 
		function () {
		    if(! $(this).hasClass("selected")) {
				$(this).find(".image").animate({opacity: 1.00}, 80);
				$(this).find(".label").animate({opacity: .7}, 80);
				$(this).find(".description").animate({opacity: 1.00}, 80);
			}
		}
	);
	
	$("#feature_bricks li").click(
		function () {
		    // blabla
		    var href = $(this).find("a").attr("href");
        if(href) {
            window.open(href);
        }
			}
	);
	
});
