$(document).ready(function () {
	
    
	$('#contents h6').click(function () {
	$('#contents ul.menu').slideToggle(10);
	});
	
	$('#home .bloc a').bigTarget({
		hoverClass: 'blochover', // CSS class applied to the click zone onHover
		clickZone : 'div:eq(0)' // jQuery parent selector
	});

	
	$('a[href*=#pagetop]').click(function () {
		$(this).blur();
		$('html,body').animate({ scrollTop: 0 }, 300);
		return false;
	});
	
	
});




