jQuery(function() {
				/*
	if(jQuery('#fade')!=null)
	{
		jQuery('#fade').innerfade({
			speed: 'normal',
			timeout: 6000,
			type: 'sequence',
			containerheight: '275px'
		});
	}*/
	// Default Search Text
	var search_default_txt = 'Artist Or Venue Search';
	jQuery('#search-box').focus(function()
		{
			if(jQuery(this).val()==search_default_txt)
				{
					jQuery(this).val('');
				}
		}
	);
	jQuery('#search-box').blur(function()
		{
			if(jQuery(this).val()==''){jQuery(this).val(search_default_txt);}
		}
	);
	jQuery('.vevent:odd').addClass('odd');
	jQuery('.gallery table tbody tr:odd').addClass('odd');
});
function popup(url)
{
	win = window.open(url, "exact_popup", "toolbar=no, scrollbars=no, location=no, resize=no, resizable=no, padding=0, width=550, height=225, left=0, top=0");
	win.focus();
}
if (top.location != location) {
	top.location.href = document.location.href;
}