$(document).ready(function(){

	//Toggle for more information dropdown
	
	$(".tags img").animate({opacity: "0.3"}, 0);
	$(".inactive").animate({opacity: "0.3"}, 0);
	
	$(".tags").click(function(){
		$(this).toggleClass("selected-info");
		
		if ($(this).hasClass("selected-info")){
			$(this).find('img').animate({opacity: "1.0"}, 0);
		}else{
			$(this).find('img').animate({opacity: "0.3"}, 0);
		};
		
		$(this).closest("tr").next('tr.more-info').toggle();
		return false;
	});
	
	$(".tags:not(.selected-info)").hover(
		function(){
			$(this).find('img').animate({opacity: "1.0"}, 0);	
	},
		function(){
			$(this).find('img').animate({opacity: "0.3"}, 0);
		}
	);
	
});