$(document).ready(function() {
	
	$(".linkbox").click(function() {
		window.location=$(this).find("a").attr("href");
		return false;
	});
	$(".linkbox").hover(function(){
		$(this).addClass("box_hover"); 
	},function(){
		$(this).removeClass("box_hover"); 
	});
	
});


$(function(){
     $(".toTop a").click(function(){
    	 $('html,body').animate({ scrollTop: $($(this).attr("href")).offset().top }, 'slow','swing');
    	 return false;
     })
});

