/**
 * 
 * @author Thomas Smit
 * @since 17-09-2009
 * @copyright Copyright Ducore Groep 2008 
 */

$(document).ready(function(){
	
	$('#Logos a, #Logo').mouseover(function(){
			
		$('#Info .Tab').hide();
		$('#Info #Tab' + $(this).attr('id')).show();
		
		$('.Item').removeClass('Selected');
		$(this).addClass('Selected');
	
	});

});
