$(document).ready(function(){
	$('li.year > ul').hide();
	$('li.year').click(function(){
		if($('ul', this).is(':hidden')){
			$(this).children('ul').slideDown();
		}
		else{
			$(this).children('ul').slideUp();
		}
	}); 

	$('#blog_social_media img').mouseover(function(){
		$(this).parent().prev('span').fadeIn();
	}).mouseout(function(){
		$(this).parent().prev('span').fadeOut();
	});
	
	$('input#contact_submit').click(function(){	
		var name = $('input#name').val();
		var email = $('input#email').val();
		var comment = $('textarea#comment').val();
		if(name == "" || email == "" || comment == ""){
			$('#contact_details').fadeOut('slow',function(){
				$('#contact_error').fadeIn('slow',function(){
					$('#contact_error').animate({opacity: 1.0}, 6000).fadeOut('slow',function(){
						$('#contact_details').fadeIn('slow');
					});
				});
			});
			return false;
		}
		
		var dataString = 'name=' + name + '&email=' + email + '&comment=' + comment;
		
		$.ajax({
			type: 'POST',
			url: '/beta/contact_form.php',
			data: dataString,
			success: function(){
				$('#contact_details').fadeOut('slow',function(){
					$('#contact_success').fadeIn('slow', function(){
						$('#contact_success').animate({opacity: 1.0}, 6000).fadeOut('slow',function(){
							$('#contact_details').fadeIn('slow');
						});
					});
				});
			}
		});
		
		return false;
	
	});

});