/*-------------------------
filename:funciton.js
author:makoto kimura

update:20110924

-------------------------*/


jQuery(function($){
	
	//lastchild
$("#secondary .aside li:last-child").addClass("lastchild");
$("#secondary .aside p:last-child").addClass("lastchild");

//_blank設定
$("a[href^=http]").not('[href*="'+document.domain+'"],[href*="http://www.cfdesign.co.jp/"]').attr('target','_blank');	

//スムーススクロール	
  $('a[href*=#]').click(function() {
    var $target=$(this.hash);
    var targetY=$target.offset().top;
    $($.browser.opera ? document.compatMode == 'BackCompat' ? 'body' : 'html' :'html,body').animate({scrollTop: targetY},500);return false;
  });

//table色分け
$("table tr:nth-child(odd)").addClass("odd");

//class
$(".list dl:nth-child(even)").addClass("even");
$(".category dl:nth-child(even)").addClass("even");

$(".text p+ul").css('marginTop','-0.8em');


});
