// JavaScript Document
Event.observe(window, 'load', shows, false);
var imgs = new Object;

function shows(){
	// Perform the Ajax call
	var data = 'get=shows';
	var myAjax = new Ajax.Request('inc/connector/show.php',{method: 'post', parameters: data, onComplete: show_list});
}

function show_list(result){
	// Split the full string
	var first = result.responseText
	var decoded = eval("(" + first + ")");
	
	// Get the buttons
	decoded.each(function(s){
		imgs[s.name] = s;
		Event.observe(s.name, 'mouseover', showSetup, false);	
	});
}

function showSetup(e){
	var element = Event.element(e);
	var id = element.parentNode.id;
	$('main_show').src = '/images/homepage_shows/' + imgs[id]['show_id'] + '/' + imgs[id]['filename']; 
	$('show_title').innerHTML = imgs[id]['title'];
	$('show_desc').innerHTML = imgs[id]['description'];
	$('main_site_url').href = imgs[id]['main_site_url'];
}