$(document).ready(function(){
						   
	$('.logo-top').hide();						   
	$('.logo-bottom').hide();
	
	$('.logo-top').delay(500).fadeIn(1000);
	$('.logo-bottom').delay(1500).fadeIn(1000);
		
	$('select').each(function () {
		if($(this).hasClass('error')) {
			
			$(this).siblings('span.select').addClass('error-select');
		} 								   
	 });	
	
	
	//fade in buttons
	var btnCount = $('.btn').size();
	var mainBtnCount = 0;
	if(btnCount>1){
        setInterval(btnFade,700); //The number here dictates the length of time between the animation
    }
	$('.btn').hide();
    function btnFade() {
			$('.btn:eq('+mainBtnCount+')').fadeIn(500);
			if(mainBtnCount<btnCount-1){
				mainBtnCount++;
			} else {
				mainBtnCount=0;
			}
    }
	
	//button fade on hover
	
	$('.btn').mouseenter( function () {
		$(this).siblings().stop(true, true).animate({opacity: 0.2});							   
   });
	$('.btn').mouseleave( function () {
		$('.btn').stop(true, true).animate({opacity: 1});							   
   });
	
	
							   
});	


