$(".cycle").ready(function(){
	$(".cycle").cycle();
});

$("a.blank_window").ready(function() {
	$("a.blank_window").click(function(i) {
		window.open($(this).attr("href"),"_blank");
		return false;
	});
});

/*if (!$.browser.msie) {
	$("#virtual_tour").ready(function() {
		$("#virtual_tour").each(function(i) {
			var appletContent = $(this).find("noscript").html();
			var appletContainer = $(this);

			$(this).html("<a href=\"#\" id=\"applet_launcher\"><span>Play</span></a>");
			$(this).find("#applet_launcher").click(function(i) {
				appletContainer.html(appletContent);
				return false;
			});
		});
	});
}*/