$(document).ready(function(){
				$("#my_menu a[href='index.php']").live ('click', function() { homepic()
				return false;
				})
				$("#my_menu a, #qshop a").live ('click', function(){ profiel() 
				$('#center').load($(this).attr('href'));
				return false;
			});
		});

// function

function profiel() 
{
$('#center').css('background-image', 'url("NULL")');
$('#center').css({'color' : '#999'});
}

function homepic()
{
$('#center').css('background-image', 'url("images/compilatie.jpg")');
$('#center').html('');
}
