// JavaScript Document

//On Click full box click
$(document).ready(function(){
						   
	$(".box li").click(function(){
    	window.location=$(this).find("a").attr("href");return false;
	});
 
}); //close doc ready



