$(function(){
	$("#footerInc").load('/include/footer.shtml?viewers');



	var targetForm = $('input#target');
	var targetLink = $('a[href*="profile.shtml"],a[href*="gallery.shtml"]','.pfEachBox, .top10wrap');

	$(targetForm).change(function(){
		if ( $(this).attr('checked') == true ) {
			$(targetLink).attr('target','_blank');
			$(this).parent().addClass("switching");
			$.cookie('target', 'blank', { expires: 30,path:'/' });
		} else {
			$(targetLink).removeAttr('target','');
			$(this).parent().removeClass("switching");
			$.cookie('target', '', { expires: -1,path:'/' });
		}
	});
	if ( $.cookie('target') ) {
		$(targetForm).attr('checked','checked');
		$(targetLink).attr('target','_blank');
		$(targetForm).parent().addClass("switching");
	} else {
		$(targetForm).attr('checked',false);
		$(targetLink).removeAttr('target','');
		$(targetForm).parent().removeClass("switching");
	}

});
