$(function(){

	$(".bookNow").click(function(){
		myWindow = window.open($(this).attr("href"), "bookNow", "width=765, height=550, resizable=yes, scrollbars=1");
    	myWindow.focus();
    	return false;
	});

	$("#videoWin").click(function(){
		myWindow = window.open($(this).attr("href"), "videoWin", "width=388, height=440, resizable=false");
    	myWindow.focus();
    	return false;
	});


	$("#vtour").click(function() {
		myWindow = window.open($(this).attr("href"), "vtourWin", "width=480, height=500, resizable=false");
	    myWindow.focus();
	    return false;
	});

	var options = {
  		newsList: "#newsTicker ul",
 		tickerRate: 40,
 		startDelay: 10,
 		loopDelay: 4000,
 		placeHolder1: " -"
	}
	$().newsTicker(options);
});

