/*角丸
$(function() {
  $('ul.contentsNavi').wrap('<div class="cornerWrap"></div>');
  $('ul.contentsNavi').corner("13px").parent("13px").corner("13px")
});*/
//角丸
$(function() {
  $('div.contentsNavi').wrap('<div class="cornerWrap"></div>');
  $('div.contentsNavi').corner("round 8px").parent().css('padding', '1px').corner("round 8px")});
//ポップアップ


var profiles =
	{
	
		popup:
		{
			height:520, // sets the height in pixels of the window.
			width:720, // sets the width in pixels of the window.
			toolbar:0, // determines whether a toolbar (includes the forward and back buttons) is displayed {1 (YES) or 0 (NO)}.
			scrollbars:1, // determines whether scrollbars appear on the window {1 (YES) or 0 (NO)}.
			status:0, // whether a status line appears at the bottom of the window {1 (YES) or 0 (NO)}.
			resizable:1, // whether the window can be resized {1 (YES) or 0 (NO)}. Can also be overloaded using resizable.
			left:0, // left position when the window appears.
			top:0, // top position when the window appears.
			center:0, // should we center the window? {1 (YES) or 0 (NO)}. overrides top and left
			createnew:1 // should we create a new window for each occurance {1 (YES) or 0 (NO)}.

		}


	};
	

   	$(function()
	{
   		$(".popupwindow").popupwindow(profiles);
   	});



