$(document).ready(function() {
	
	$('#rotating1').cycle({ 
		fx:    'fade', 
		delay: -700,
		timeout: 5000,
		pause: 1,
		speed: 1300
	 });
	 
	 $('#rotating4').cycle({ 
		fx:    'fade', 
		delay: -700,
		timeout: 5000,
		pause: 1,
		speed: 3300
	 });
	
	$(".dont_store_checkbox").change(function()
		{
		if ($(".dont_store_checkbox").is(":checked"))
			{
			$(".unticked_box").hide();
			$(".ticked_box").toggle();
			}else{
			$(".ticked_box").hide();
			$(".unticked_box").toggle();
			}
		});
	
	$(".dont_store_checkbox").click(function()
		{
		if ($(".dont_store_checkbox").is(":checked"))
			if (confirm("Are you really sure you do not want to be contacted?"))
				{
				return true;
				}else{
				return false;
				};
		});
	
	$('#tell_friend_form').submit(function()
		{ 
		$(this).ajaxSubmit(function(data)
			{ 
			if(data=="success")
				{
				alert("The email has been sent!");
				}else{
				alert(data);
				}
			});
		return false;
		});
		
	// New Drop-down quick choice
	$('.click_to_open').click(function()
		{
		if ($('.choices').is(':hidden'))
			{
			$('.choices').fadeIn('normal');
			}else{
			$('.choices').fadeOut('fast');
			};
		});
		
	$('.choices').mouseleave(function()
		{
		$('.choices').fadeOut('fast');
		});
		
	// Testimonials cycle
	
	$('.testimonial_change').cycle({ 
		fx:    'fade', 
		delay: -700,
		timeout: 5000,
		pause: 1,
		speed: 3300
	 });
	
});
