//javascript document
$(document).ready(function(){
	/* 
	 * dropdown list
	 */
	//hide one-level dropdown list
	$('#nav > ul > li').children('ul').hide();
	$('#nav > ul > li').hover(function(){

		$(this).addClass('hover');
		$(this).children('ul').show();
	},function(){
		$(this).removeClass('hover');	
		$(this).children('ul').hide();
	});
	
	/* 
	 * callout box
	 */
	$('#callout li').hover(function(){
		$(this).css({background: '#fff', borderBottom: '0'})
	}, function(){
		$(this).css({backgroundImage: 'url(images/bg_callout.gif)', backgroundRepeat: 'no-repeat', backgroundPosition: 'top right', backgroundColor: 'transparent', borderBottom: '1px solid #5D4F41'});
	})
	$('#callout li.last').hover(function(){
		$(this).css({background: '#fff', borderBottom: '0'})
	}, function(){
		$(this).css({backgroundImage: '', backgroundRepeat: 'no-repeat', backgroundPosition: 'top right', backgroundColor: 'transparent', borderBottom: '1px solid #5D4F41'});
	})
	
})