$(document).ready(function(event) {
	$('#slideshow').cycle({
		delay:  4000,
		speed:  2000
	});
    $('#imageContainer img').hide().filter(':first').show();
    $('#thumbContainer a').hover(function(event) {
            $('#imageContainer img').hide().filter(this.hash).show();
        },
        function () {}
    );
    $('#accommodation-panel h2 a').bigTarget({
    	hoverClass: 'homehighlight',
		clickZone : 'div:eq(0)'
	});
	$('.accommodation-feature h2 a').bigTarget({
		hoverClass: 'highlight',
		clickZone : 'div:eq(1)'
	});
	$('.deal-feature .deal-feature-information h2 a').bigTarget({
		hoverClass: 'highlight',
		clickZone : 'div:eq(1)'
	});
	$('.deal-list h3 a').bigTarget({
		hoverClass: 'highlight',
		clickZone : 'div:eq(0)'
	});
	
	$("a[href^='http:']").not("[href*='mandalayresort.com.au']").attr('target','_blank');
	
});