// JavaScript Document
$(document).ready(function(){

	//$('.box').css('cursor','pointer');

	// box hover effect
	$('.box').hover(
	  function(){
		$(this).addClass('hover');
		var link = $(this).children('.title>a').attr('href');
	  },
	  function(){
		$(this).removeClass('hover');
	  }
	);
});