//(c) john klungers computer mobiel bv
$(document).ready(function(){
	popup.init();
});

var popup = {
	init: function() {
		$('#keuze a').click(function(e){
			e.preventDefault() 
		});
		$('a').hover(function(e){
				gTitel ="#" +  this.title;
				$(gTitel).fadeIn({duration: 'slow', queue: false});
			}, 
			function(){
				$(gTitel).fadeOut({duration: 'fast', queue: false});
			});
	}
}


/*
init: function() {
		
		$('#keuze a').click(function(e){
			e.preventDefault() 
		});
		
		$('a').hover(function(e){
			e.preventDefault();
			gTitel ="#" +  this.title;
			$(gTitel).animate({
   				 width: 'toggle',
  				  height: 'toggle'
 			 }, {
    		duration: 5000,
			complete: function(){
					$(gTitel).hide(600);
				}
			});
		)};
	}
*/
