$(function(){
	$("#con").accordion( {collapsible: true,active: false, autoHeight: false});
	$('.ttl h2:contains("ONLINE SOON")').fadeOut('normal').fadeIn('normal');
	
	$('#newWindow').click(function(evt){
		// open in nieuwe venster
		evt.preventDefault();
		window.open(this.href);
	});
	
	$('#breadcrumbs span:last').css({color:'#000000!important'});


	$('.info').hover(function(e){
		e.preventDefault();
		var position = $(this).position();
		var inner = $(this).html();
		
		//$('#overlayBg').toggleClass('hideItem');
		
		$(this).css({top:position.top-10, left: position.left-30});
		$(this).find('#close').toggleClass('hideItem');
		$(this).toggleClass('info');
		$(this).toggleClass('activeI');
	});

	
	
});



