$(document).ready(function(){

	/*サブメニュー*/
	$('#contentblock #smenu').jcarousel({
		scroll:1,
		auto:5,
		wrap:"last"
	});

	/*POPリストナンバリング*/
	$('#pop ol li').each(function (i){
		i= i+1;
		$(this).addClass("card"+i); 
	});

	/*外部リンク*/
	$('a[@href^="http"]').not('[@href*="www.kenkocard.com"]').not('[href^=#]').click(
		function(){window.open(this.href,'_blank');
		return false;
	});
});