// JavaScript Document
$(function(){

$(".b1").scrollable({size:1,items:".b1 ul",loop:true}).autoscroll({ autoplay: true,interval:4000 }).navigator({navi:".tab01",naviItem:'dd',activeClass:"active"});
$(".b2").scrollable({size:5,items:".b2 dl",loop:true}).autoscroll({ autoplay: true,interval:4000 });

$(".rb .hnl dd:first").addClass("hover");
$(".rb .hnl dd").hover(function(){
$(".rb .hnl dd").removeClass("hover");
$(this).toggleClass("hover");
})
$(".rb .hnl dd:last").css({border:"none"})

$(".from :input,.from textarea").not($(".from :input.s")).focus(function(){
if($(this).val()==this.defaultValue)
{$(this).val("");}
}).blur(function(){
if($(this).val()=="")
{$(this).val(this.defaultValue);}
})

})
