

 $(document).ready(function(){ 
        $("#mainNavigation ul").superfish({dropShadows:false}); 
		
		var alt = 0;
		
		$("#flipMe").click(function(){
			alt%2 == 0?
			$(this)			
				.animate({height:168+"px", width: 0+"px", marginLeft: 180+"px"},140)
				.attr('src', $(this).attr("alt") + "/antwoord.jpg")
				.animate({height:168+"px", width: 365+"px", marginLeft: 0+"px"},240):
			$(this)			
				.animate({height:168+"px", width: 0+"px", marginLeft: 180+"px"},140)
				.attr('src', $(this).attr("alt") + "/vraag.jpg")
				.animate({height:168+"px", width: 365+"px", marginLeft: 0+"px"},240);
			alt++;
		})
		
    }); 