$(document).ready(function(){
	
	var topFlyin 	= $('.top-flyin');
	var bottomFlyin	= $('.bottom-flyin');
	var rightFlyin	= $('.right-flyin');
	var fadeContent;
	
	$('#bulletbox ul li').hover(
		function(){
			topFlyin.stop().animate({
				top		: '0px',
				left	: '578px'
			}, 500);
			bottomFlyin.stop().animate({
				top		: '-54px',
				left	: '230px'
			}, 500);
			rightFlyin.stop().animate({
				top		: '0px',
				left	: '578px'
			}, 500);
			
			fadeContent = $(this).find('.fadecontent');
			
			fadeContent.clone().appendTo('#bulletbox').hide().fadeIn(700);
			
		}, function(){
			topFlyin.stop().animate({
				top		: '-130px',
				left	: '548px'
			}, 500);
			bottomFlyin.stop().animate({
				top		: '253px',
				left	: '-41px'
			}, 500);
			rightFlyin.stop().animate({
				top		: '-253px',
				left	: '960px'
			}, 500);
			
			fadeContent = $('#bulletbox > .fadecontent');
			
			fadeContent.fadeOut().remove();
		});
 // Links
  $("a[rel=external]").attr('target', '_blank');
  
  // Form
	$("#contact2 label").inFieldLabels();
	$("#contacthome label").inFieldLabels();
	$("#commentform label").inFieldLabels();
	$("#mc_signup label").inFieldLabels();
	$("textarea").elastic();
	$("div.cc-label label").inFieldLabels();
});

  
 
