jQuery(document).ready(function(){
	var $ = jQuery;

	//navigation , dropdown menu
	$('#nav > li').each(function(){
		$a = $(this).children('a');
		$(this).children('ul').css('width',$a.outerWidth());
	})

	$('#nav > li').mouseover(function(){
		$(this).children('ul').show();
		$(this).children('a').addClass('selected');
	}).mouseout(function(){
		$(this).children('ul').hide();
		$(this).children('a').removeClass('selected');		
	});
	

	
						   
});