(function($){
    $(document).ready(function(){
		
		$('.css').removeClass('css');
		
		if ($.browser.opera) {
			$('#menu li.link').css({backgroundPosition: '0px -50px'});
			$('#contact_pitch_info input').add('#weight').css({
				height: 25,
				padding: '0 0 0 0'
			});
		}
		
		if ($.browser.msie) {
			
			 $(document).pngFix();
			
			$('#menu').animate({
				top: -20
            }, 400);
	        $('#menu').hover(function(){
	            $(this).stop().animate({
					top: 0
	            }, 200);
	        }, function(){
				$(this).stop().animate({
					top: -20
	            }, 400);
	        });
	        $('#menu li.link').hover(function(){
	            $(this).css({
					marginTop: '0px',
					paddingTop: '0px'
	            });
	        }, function(){
	            $(this).css({
					marginTop: '-4px',
					paddingTop: '4px'
				});
	        });
		}
		else {
			$('#menu').animate({
                opacity: .5,
				top: -20
            }, 400);
	        $('#menu').hover(function(){
	            $(this).stop().animate({
	                opacity: 1,
					top: 0
	            }, 200, function() {
					if ($.browser.opera) {
						$('#menu li.link').stop().css({backgroundPosition: '0px -25px'});
					}
				});
	        }, function(){
	            if ($.browser.opera) {
					$('#menu li.link').stop().css({backgroundPosition: '0px -50px'});
				}
				$(this).stop().animate({
	                opacity: .5,
					top: -20
	            }, 400);
	        });
	        $('#menu li.link').hover(function(){
	            $(this).stop().animate({
	                backgroundPosition: '(0px -21px)'
	            }, 100);
	        }, function(){
	            $(this).stop().animate({
					backgroundPosition: '(0px -25px)'
				}, 100);
	        });
		}
    
		$('#testimonials a').add('#footer a').hover(function(){
            $(this).stop().animate({
                color: '#ffffff'
            }, 250);
        }, function(){
            $(this).stop().animate({
				color: '#999999'
			}, 250);
        });
		
		$('#first_name').focus();
		
		$('#submit').click(function () {
			var name, email;
			
			if ( ! $('#first_name').val().length && ! $('#last_name').val().length)
			{
				name = prompt('Oops, you forgot your name! What is it?', 'Mr. Rhys Cycling');
				
				if ( ! name)
				{
					$('#first_name').focus();
					
					alert('Please provide the name of the person to contact.');
					return false;
				}
				else
				{
					$('#first_name').val(name);
				}
			}
			
			if ( ! $('#email').val().length)
			{
				email = prompt('Oops, you for your email! We\'ll need that to contact you. We\'ve got your back, just type it here.', '');
				
				if ( ! email)
				{
					$('#email').focus();
					
					alert('Please provide an email address to keep communication as clear as possible.');
					return false;
				}
				else
				{
					$('#email').val(email);
				}
			}
		});
    })
})(jQuery);

