/*
* displays common javascript
*/


/**
 * displays the easterfest city preview
 *
 * @return void
 * @author Tim Cromwell
 **/
function displayCityPreview()
{
	// create the html content
	var htmlContent = "<h2 class=\"modal_title\">Easterfest City: Coming Soon</h2>";
	htmlContent += "<img src=\"/workspace/assets/images/content/easterfest_city_large.jpg\" class=\"modal_img\" />";
	htmlContent += "<div class=\"scroll_content\">";
	htmlContent += "<p>Easterfest City is one of our big new announcements in 2010.</p>";
	htmlContent += "<p>An entire website with heaps of Easterfest City information is coming soon, however, here is a list of the basics:</p>";
	htmlContent += "<ul>";
	htmlContent += "<li>Easterfest City is a completely new and separate festival to Easterfest in Queen's Park</li>";
	htmlContent += "<li>Easterfest City will be mostly located in Toowoomba's central business district. Think shops, cafes restaurants, cinemas and even local pubs!</li>";
	htmlContent += "<li>Easterfest City is all about celebrating the true message of Easter in the City</li>";
	htmlContent += "<li>Easterfest City will include visual art, films, music & heaps more</li>";
	htmlContent += "<li>Most events at Easterfest City will be free of charge</li>";
	htmlContent += "</ul>";
	htmlContent += "</div>";

	// insert the content into the popup
	$('div#modal_window_dynamic_content').html(htmlContent);
	
	// display the popup
	showModalWindow();
}