// JavaScript Document

$(document).ready(function() {

	$('#content #referenties #bar').css({opacity:0.5});
	
});

function loadAlbum(albumID) {
	
	$('span.album').css({background: 'url(images/inactive.gif) 0px 5px no-repeat',color:'#fff'});
	
	$('#album_' + albumID).css({background: 'url(images/active.gif) 0px 5px no-repeat',color:'#fcc41a'});
	
	$.ajax({
		type	:	'GET',
		url	:	'request.php?album='+albumID,
		success	:	function(response) {
			$('#referenties').html(response);
		}
	});
}
