
/* 01.Anchor Scroll
--------------------------------------------------*/
$(function(){
$("a[href^=#]").click(function() {  
var hash = this.hash;  
if(!hash || hash == "#")  
return false;  
$($.browser.safari ? 'body' : 'html')  
.animate({scrollTop: $(hash).offset().top}, 500, "swing");  
return false;  
})
})


/* 02.Junction Half
--------------------------------------------------*/
$(function(){
$("div.junction02 div.junction-set:nth-child(even)").addClass("float-left");
$("div.junction02 div.junction-set:nth-child(odd)").addClass("float-left sp-mr020");
})

/* 03.Text Resize
--------------------------------------------------*/
$(function(){
$(".font-size a").textresizer({
target: "body",
type: "css",
sizes: [ {"font-size":""},{"font-size":"150%"},{"font-size":"200%"}],
selectedIndex: 0
});
});
