var clients = new Array(
	['avt', 'All Voice Talent'], 
	['hkcec', 'Hong Kong Convention and Exhibition Centre'],
	//['nirmukta', 'Nirmukta'],
	//['royalthai', 'Royal Thai'],
	['soldnerx', 'Soldner-X'],
	['sundeep', 'Sundeep Peswani'],
	['theplace', 'The Place']
);

$(document).ready(function() {
	var rand = parseInt(Math.random() * clients.length);
	$('#showcase a img').each(function() {
		$src = $(this).attr('src');
		$new = clients[rand];
		$(this).attr('src', $src.replace('hkcec', clients[rand][0]));
		$(this).attr('alt', clients[rand][1]);
	});
	
	$('#showcase a').hover(function() {
		$draft = $(this).find('.draft');
		$live = $(this).find('.live');
		
		$live.fadeIn(1000);
		$draft.fadeOut(1000);
	}, function() {
		$draft = $(this).find('.draft');
		$live = $(this).find('.live');
		
		$live.fadeOut(3000);
		$draft.fadeIn(3000);
	});
});
