$(document).ready(function(){
	$("#programs strong").each(function(){
		$("#programs .program-lists").append($(this));
	});
	
	$("#programs .program-photo-item").each(function(){
		$("#programs .program-photos").append($(this));
	});
	
	// GEt the first item in the list
	// and show it
	$("#programs .program-photos div:first-child").show();
	$("#programs strong").hover(function(){
		var selected = $(this).attr("rel");
		// Hide all photos first
		$(".program-photo-item").hide();
		// SHow the selected item
		$("#program-photo-"+selected).show();
	}, function(){
	
	});
});
