$(document).ready(function() {
	setInterval("bansko()", 10000);
	setInterval("stowe()", 20000);
});

function stowe() {
	$("#offer").css({"background-image" : "url(./images/stowe_offer_bg.jpg)"})
	$("#offer_headline > h2").text("Ski in Stowe, shop in New York")
	$("#offer_headline > h3").text("8 day ski trip with stopover in New York")
	$("#offer_detail > p").text("Skiing in Stowe, Vermont USA could only be made better by combining it with a day’s sightseeing and shopping excursion to New York. This offer is available now at high season dates for an amazing price. Contact us now to find out more...")
}

function bansko() {
	$("#offer").css({"background-image" : "url(./images/bansko_offer_bg.jpg)"})
	$("#offer_headline > h2").text("All inclusive skiing in Bansko")
	$("#offer_headline > h3").text("High season dates at unbeatable prices")
	$("#offer_detail > p").text("Bansko in Bulgaria is a World Cup ski resort and fast becoming one of Europe’s premier ski destinations. Our special package is of the highest quality and includes all the fun of a ski trip but at an amazing price. Contact us now to find out more...")
}

function iframe_callback_success() {
  Shadowbox.close();
	$("#flash").fadeIn(1000)
	var t=setTimeout('$("#flash").fadeOut(1000)',5000);
	// alert('show a fancy flash message please');
}
