// JavaScript Document

$(function(){
	$('#butterfly_lg').not('#home #butterfly_lg').css({top:'-112px',left:'644px',opacity:.92});
	$('#home #butterfly_lg').css({top:'-192px',left:'674px',opacity:0});
	$('#home #butterfly_lg').animate({top:'-112px',left:'644px',opacity:.92},2200);
	
	$('#site_nav a').append('<img class="butterfly_nav" src="/images/butterfly_nav.gif" style="position:absolute; top:0px; left:20px;" />');
	$('.butterfly_nav').css({opacity:0});
	$('#site_nav a').hover(
		function(){
			$(this).children('img').stop(true,false).animate({top:'10px',left:'25px',opacity:.8},500);
		},
		function(){
			$(this).children('img').animate({top:'0px',left:'20px',opacity:0},500);
		}
	);
});