 $(document).ready( function() {

		$('.content').hide();
		
		$('.trigger').hover(function(){
			$('#' + this.id + ' span img').attr('src', 'https://www.oxxio.nl/images/title.axd?fg=ff007aa5&bg=ffe3f0f5&s=11&t=' + this.title);
		}, function(){
			$('#' + this.id + ' span img').attr('src', 'https://www.oxxio.nl/images/title.axd?fg=ff007aa5&bg=ffffffff&s=11&t=' + this.title);
		});

		$('.trigger').click(function(){
			var shortid = this.id.substr(7);
			$('.content' + shortid).slideToggle("500");
			$(this).toggleClass("selected");
		});
});
