/* ===========================================================================
 * SCHEDULE THE BEHAVIOURS
 * =========================================================================== 
 */
 

/* Google map functions */
$(window).resize(function()
{
	if(typeof loadMap==='function')
		loadMap();
});

$(window).unload(function()
{
	if(typeof GUnload==='function')
		GUnload();
});

$(document).ready(function()
{
	if(typeof loadMap==='function')
		loadMap();
});

$(document).ready(function()
{	
	$("a[rel='external']").attr("target","_blank");
	$('a.lightbox').lightBox();
	initForms();
});
 
function initForms()
{
	var artistSelect = document.getElementById("artist-select-list");
	
	if (artistSelect != null) 
 	{
    	artistSelect.onchange = function() 
    	{
	    	var artistForm = document.getElementById("artist-select-form");
      		artistForm.submit();
      		return false;
    	};
	}
}


