$(document).ready(function(){
	$('.xtrig')
	.css( {'background-position': "0px 0px"} )
	.mouseover(function(){
		$(this).stop().animate(
			{'background-position':"-111px 0px"},
			150
		)
	})
	.mouseout(function(){
		$(this).stop().animate(
			{'background-position':"0px 0px"}, 
			150
		)
	});
		
		
	$('li.blue-link a').click(function () {
		var rel = $(this).attr('rel');
		$('.cursussen-layer, .cursussen-foto-layer').hide();
		$('#cursussen-' + rel + ', #img-' + rel).show();	
  	});
  	  	
});
