﻿jQuery.noConflict();

jQuery(document).ready(function(){
	jQuery("#order_inner_div div.content").corner("round 5px");
	
	jQuery('div.ceremony_pict_main div.other a').each(
	function()
	{
		jQuery(this).click(
		function()
		{
			href = jQuery(this).attr('href');
			jQuery('div.ceremony_pict_main div.main_pict img').attr('src',href);
			return false;
		}
		);
	}
	);

	jQuery('div.button input[type=image]').each(
	function()
	{
		jQuery(this).mouseover(
		function()
		{
			jQuery(this).attr('src','/img/button_01_2.gif');
		}
		);
		jQuery(this).mouseout(
		function()
		{
			jQuery(this).attr('src','/img/button_01.gif');
		}
		);
	}
	);
});

function more(_id)
{
	a = document.getElementById(_id);
	if(a.style.display!='block')
	{
		a.style.display='block';
	}
	else
	{
		a.style.display='none';
	}
}
