// JavaScript Document
$(document).ready(function(){

	$('.box').css('cursor','pointer');
	var link = "";

	// box hover effect
	$('.box').hover(
	  function(){
		//$(this).addClass('hover');
		link = $(this).find('h3 > a').attr('href');
	  },
	  function(){
		//$(this).removeClass('hover');
	  }
	);

	$('.box').click(function(){
		window.open(link, "external");
		return false;
	});

});
