$(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 () {}
    );
    
    $('#loopedCarousel').loopedCarousel({
		container: '.slidecontainer', // Class or ID of main container
		slides: '.slides', // Class or ID of slide container
		pagination: '.pagination', // Class or ID of pagination container
		autoStart: 0, // Set to positive number for auto start and interval time
		slidespeed: 300, // Speed of slide animation
		fadespeed: 300, // Speed of fade animation
		items: 6, // Items shown
		padding: 9, // Padding between items
		showPagination: false, // Shows pagination links
		vertical: false // Set to true for vertical carouse
	});
    
    $('#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');
	
});
