$(function(){
   $('p.pagetop a').click(function(){
　　$('#container').ScrollTo(1000, 'easeout');
　　return false;
   });
})


$(document).ready(function() {
$("#searchbox input.text").hover(function(){
    $(this).css("background-image","url(http://redline.hippy.jp/images/temp/search_bg_o2.gif)");
}, function(){
    $(this).css("background-image","url(http://redline.hippy.jp/images/temp/search_bg2.gif)");
});

$(".sample_source").css("display","none");
$(".source_open").click(function(){
	$(this).next().slideToggle("slow");
	return false;
});
})


