$(document).ready(function(){
	
	//Remove outline from links
	$("a").click(function()
	{
		
		$(this).blur();
		
	});
	
	//When mouse rolls over
	$(".dropDown").mouseover(function()
	{
	
		var items	= $(this).find('ol li').length;
		
		var height	= ( items + 1 ) * 48;
		
		$(this).stop().animate({height: height+'px'},{queue:false, duration:800, easing: 'easeOutBounce'})
		
	});
	
	//When mouse is removed
	$(".dropDown").mouseout(function()
	{
		
		$(this).stop().animate({height:'40px'},{queue:false, duration:800, easing: 'easeOutBounce'})
		
	});

	function autoFill(id, v){
		$(id).css({ color: "#b2adad" }).attr({ value: v }).focus(function(){
			if($(this).val()==v){
				$(this).val("").css({ color: "#333" });
			}
		}).blur(function(){
			if($(this).val()==""){
				$(this).css({ color: "#b2adad" }).val(v);
			}
		});
	
	}
	
	autoFill($("#emailadres"), "E-mailadres...");	
	
});


