$(document).ready(function(){

	$('#content-toggle').addClass('open');
	$('#promobox').delay(2700).animate({'top':'0px'},1000);
	$('#promobox2').delay(2700).animate({'top':'0px'},1000);
	
	$("#content-toggle").click(function(){
		if($(this).hasClass('open')){
			$('#text-content, #promotext').fadeOut(function(){
				$('#promobox').animate({'top':'-330px'},1000);
				$('#promobox2').animate({'top':'-360px'},1000);
				$("#content-holder").animate({'width':'26px'},1000);
				$('#toggle-holder a').html('Show Text');
			});
			$(this).removeClass('open');
			
		} else {
			$('#toggle-holder a').html('Hide Text');
			$('#promobox').animate({'top':'0px'},1000);
			$('#promobox2').animate({'top':'0px'},1000);
			$("#content-holder").animate({'width':'379px'},1000,function(){
				$('#text-content, #promotext').fadeIn(500);
			});
			
			$(this).addClass('open');
		}
		return false;
	});

	
	if($('.error').size() == 0 && $('.success').size() ==0) {

	var contentWidth = $('#content-holder').width();
	var imageWidth = $(window).width() - $('#left-content').width();
	
	$('#content-holder, #image-holder').hide().css('width','0px');
	$('#toggle-holder').hide();
	
	startTransition = function() {	
		$('#image-holder').animate({'width':imageWidth},1500,function(){
			$('#content-holder').animate({'width':contentWidth},1000,function(){
				$('#toggle-holder').fadeIn();
			});
		});
	}

	$(window).resize(function(){
	  imageWidth = $(window).width() - $('#left-content').width();
	  if($(window).width()>960) {
	  	$('#image-holder').css('width',imageWidth)
		 $('#page-width').width($(window).width())
	  } else {
		  $('#page-width').width(960)
	  }

	});
	}
});
