
$(function() {   
	
	$('#section_buttons li').hover(
		function(){
			$(this).css({"cursor":"pointer"});
		}
	);
	$('#section_buttons li').click(
		function(){
			targetlink=$(this).find("a").attr("href");
			top.location = targetlink;
		}
	);
	
});
