// JavaScript Document

$(document).ready(function(){
	
	/*Fix alpha png in ie6*/
	$('.pngfix').pngFixSingle();
	
	/*Top Menu*/
	$('#top_menu')
	.delegate('.top_link','mouseover', function(e){
		$.doTimeout('topmenu');
		if($(this).find('ul:visible').length === 0){
			$('#top_menu').find('ul li ul:visible').slideUp('fast');
		}
		if($(this).find('ul').length > 0){
			var thiswidth = $(this).find('ul').width();
			thiswidth = (thiswidth < $(this).width()) ? $(this).width() : thiswidth;
			$(this).find('ul').css('width', thiswidth).slideDown('fast');
		}
	})
	.delegate('.top_link','mouseout', function(e){
		var me = this;
		$.doTimeout('topmenu', 1000, function(){
			$(me).find('ul').slideUp('fast');
		});
		
	});
	
	
});
