$(document).ready(function() {

	$('.home_panel').each(function() {
		var link = $(this).find('h1').children('a').attr('href');
		$(this).css('cursor', 'pointer').bind("click", function() {
			window.location = link;
		});
	}).hover(function() {
		$(this).css({
			'-moz-box-shadow'                    : '3px 3px 3px #666',
			'-webkit-box-shadow'                 : '3px 3px 3px #666',
			'box-shadow'                         : '3px 3px 3px #666'
		});
	}, function() {
		$(this).css({
			'-moz-box-shadow'    : '0 0 0 #fff',
			'-webkit-box-shadow' : '0 0 0 #fff',
			'box-shadow'         : '0 0 0 #fff'
		});
	});

});
