$(document).ready(function()
{
	
	$(document).click(function(){
	  $(".dropdown ul:visible").slideUp();
	});

	
	$('.dropdown').each(function(){
		if($(this).find('.selected').length){
			var selected = $(this).find('.selected').children('a').html();
			$(this).find('.drop-visible').html(selected);
		}
		
		$(this).click(function(e){
			$(".dropdown ul").slideToggle();
			return false;
		});
		
		$(this).find('li a').click(function(e) {
		   e.preventDefault();
		   e.stopPropagation();
		   
		   window.location = $(this).attr('href');
		});	
		
		
		
	});
	
	if($('#gallery').length){
		$('#gallery a').lightBox({fixedNavigation:true});
	}
})
