﻿$(document).ready(function(){ 
	$(document).pngFix();
	$(function() {
		$('#gallery a').lightBox();
		});
		//$('form#dropdown select').styledSelect();
		$('div.navigatie li').hover(function() {
			$('img', this).show();
			$('ul', this).show();
			$('a', this).addClass('selected');
			}, function() {
				$('ul', this).hide();
				$('img', this).hide();
				$('a', this).removeClass('selected');
			});
		});