var BannerRotator;

var belaqua_home = {
	
	init: function() {
		$('#find-spa-voucher').click(function() {
			$('#find-spa-voucher-form').submit();
		});
		
		$('#find-bespoke-spa-voucher').click(function() {
			$('#find-bespoke-spa-voucher-form').submit();
		});
		
		BannerRotator = new BannerRotator();
		BannerRotator.init();
		
		TestimonialRotator = new TestimonialRotator();
		TestimonialRotator.init();
		
		$('#find-spa-voucher-form select, #find-bespoke-spa-voucher-form select, #filters select').change(function(){
			if($(this).parents('form') && $(this).val() != 0)
			{
				$(this).parents('form').submit();
			}
		});
	}
}

$(document).ready(belaqua_home.init);
