<!-- // verberg voor oudere browsers

// 'document.images' geeft aan dat browser dit script aan kan

if (document.images)
{

	// de plaatjes pre-laden
	afbeelding01Uit = new Image();
	afbeelding01Uit.src = "images/layout/btn_myspace.jpg";
	afbeelding01Aan = new Image();
	afbeelding01Aan.src = "images/layout/btn_myspace_over.jpg";

	afbeelding02Uit = new Image();
	afbeelding02Uit.src = "images/layout/btn_youtube.jpg";
	afbeelding02Aan = new Image();
	afbeelding02Aan.src = "images/layout/btn_youtube_over.jpg";

	afbeelding03Uit = new Image();
	afbeelding03Uit.src = "images/layout/btn_partyflock.jpg";
	afbeelding03Aan = new Image();
	afbeelding03Aan.src = "images/layout/btn_partyflock_over.jpg";

	afbeelding04Uit = new Image();
	afbeelding04Uit.src = "images/layout/btn_hyves.jpg";
	afbeelding04Aan = new Image();
	afbeelding04Aan.src = "images/layout/btn_hyves_over.jpg";

	afbeelding05Uit = new Image();
	afbeelding05Uit.src = "images/layout/btn_facebook.jpg";
	afbeelding05Aan = new Image();
	afbeelding05Aan.src = "images/layout/btn_facebook_over.jpg";

	afbeelding06Uit = new Image();
	afbeelding06Uit.src = "images/layout/btn_back.jpg";
	afbeelding06Aan = new Image();
	afbeelding06Aan.src = "images/layout/btn_back_over.jpg";

	afbeelding07Uit = new Image();
	afbeelding07Uit.src = "images/layout/btn_buy.jpg";
	afbeelding07Aan = new Image();
	afbeelding07Aan.src = "images/layout/btn_buy_over.jpg";

	afbeelding08Uit = new Image();
	afbeelding08Uit.src = "images/layout/btn_view.jpg";
	afbeelding08Aan = new Image();
	afbeelding08Aan.src = "images/layout/btn_view_over.jpg";

	afbeelding09Uit = new Image();
	afbeelding09Uit.src = "images/layout/btn_viewmore.jpg";
	afbeelding09Aan = new Image();
	afbeelding09Aan.src = "images/layout/btn_viewmore_over.jpg";
}

function enableClick(id, image){
	$(id).src = image;
}
function disableClick(id, image){
	$(id).src = image;
}
