/*-------------------------------------------------------------------

  linkbox.js

-------------------------------------------------------------------*/

$(document).ready(function() {
						   
	$('.linkbox').click(function(){
		window.location.href = ($('p.readmore a').attr('href'));
	});
	
	$('.linkbox').hover(
	function(){
		
		$(this).addClass('box-hover'); 
		
	},
	function(){
		
		$(this).removeClass('box-hover'); 
		
	});
	
}); 
