/*------------------------------------------------------------------------------
Osaka Cityweb - JavaScript Modules Import
URI: http://www.osakacityweb.jp/
Date: 2008-02-27
Copyright (C) 株式会社現代ビジネスプラン. All Rights Reserved.
------------------------------------------------------------------------------*/

//スムーズスクロール設定(jQuery)
$(function(){
	$('a[@href^="#"]').click(function(){$('#'+($(this).attr("href").split('#')[1])).ScrollTo(500,'easeout'); return false;});
  

	
});


//角丸設定(jQuery)
$(document).ready(
	function()
	{
		$('.roundBox').corner({
          tl: { radius: 8 },
          tr: { radius: 8 },
          bl: { radius: 8 },
          br: { radius: 8 },
          antiAlias: true,
          autoPad: true,
          validTags: ["div", "dl"] });
});