$(document).ready(function () {
	
	$('.post_wr:last').css({'background-image':'url(null)'});
	
	$('.smartabs').find('.t_body').hide();
	$('.smartabs').find('.t_body'+':first').show();
	$('.smartabs').find('.t_head'+':first').addClass('current');
	$('.smartabs').find('.t_head').click(function(){
		$('.current').removeClass('current');
		$(this).addClass('current');
		$('.t_body').hide();
		var bodychange = $(this).find('a').attr('title');
		$('#'+bodychange).show();
		return false;
		});
	
	//$('#contents h6').click(function () {
	//$('#contents ul').slideToggle(10);
	//});
	
	$('.bloc a').bigTarget({
		hoverClass: 'b_hover', // 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;
	});
	
});
