$(function () {

		
		$('#panels').children().each(function(){
		
			$(this).css({"cursor": "pointer"});
		
			$(this).hover(
			
			function(){
			
				$(this).children(':nth-child(3)').animate({"color":"#515151"}, 100);
			
			},
			
			function(){
			
				$(this).children(':nth-child(3)').animate({"color":"#ffffff"}, 100);
			
			});
			
			$(this).click(function(){
    			window.location = $(this).attr("class");
			});
		
		
		})


});
