$(document).ready(function(){
	
	
	$('.gal a').hover(function(){
		$('#tooltip').remove();
		var title = $(this).find('img').attr('alt');
		$(this).append('<div id="tooltip" style="display: none">'+title+'</div>');
		
		$('#tooltip').fadeIn(200, function(){
			if($.browser.msie) $(this).css('background-image', 'url(images/gfx/tooltip.png)');
		});

	}, function(){
		if($.browser.msie) $('#tooltip').css('background-image', 'url(images/gfx/tooltip.gif)');
		$('#tooltip').fadeOut(100, function(){
			$(this).find('#tooltip').remove();
		});
			
	});
	
	$('#nav li ul').show().css('opacity', 0);
	$('#nav li').hover(function(){
		var ul = $(this).find('ul').css('z-index', 99);
		//ul.show().css('opacity', 0);
		ul.animate({
			opacity: 1
		}, {
			queue: false,
			duration:  200
		});

	}, function(){
		//if($.browser.msie) $('#tooltip').css('background-image', 'url(images/gfx/tooltip.gif)');
		$(this).find('ul').css('z-index', '').animate({
			opacity: 0
		}, {
			queue: false,
			duration:  200
		});
			
	});
	
	$('#nav menu > li').click(function(e){
		var $target = $(e.target);
		if($target.is('li')) {
			var href = $(this).find(' > a').attr('href');
			window.location.href = href;
		}
	});

	
	
// end ready()
});
