/* Author: 
	Lee Brooks <lee@webforma.co.uk>
*/


$('.live_the_deam_button').click(function() {

  if ($(this).hasClass("open")) {
    $('#left_live_the_dream').animate({
      marginLeft: "+0px"
    });
    $(this).removeClass("open");
  } else {
    $('#left_live_the_dream').animate({
      marginLeft: "-230px"
    });
    $(this).addClass('open');

  }
});


$('.take_the_tour_button').click(function() {

  if ($(this).hasClass("open")) {
    $('#left_take_the_tour').animate({
      marginLeft: "+0px"
    });
    $(this).removeClass("open");
  } else {
    $('#left_take_the_tour').animate({
      marginLeft: "-230px"
    });
    $(this).addClass('open');

  }
});

setTimeout(
	function() {
		$('#left_take_the_tour').animate({
			marginLeft: "+0px"
		});
		$('#left_take_the_tour').addClass('open');
	}
	, 5000);
	

setTimeout(
	function() {
		$('#left_take_the_tour').animate({
			marginLeft: "-230px"
		});
		$('#left_take_the_tour').removeClass("open");
	}
	, 8000);

setTimeout(
	function() {
		$('#left_live_the_dream').animate({
			marginLeft: "+0px"
		});
		$('#left_live_the_dream').addClass('open');
	}
	, 5000);
	

setTimeout(
	function() {
		$('#left_live_the_dream').animate({
			marginLeft: "-230px"
		});
		$('#left_live_the_dream').removeClass("open");
	}
	, 8000);









