// jQuery work

$(document).ready(function(){
	$("#navigation").before('<div id="ContactSheet"><a href="mailto\:adam\@incayellow.com"><span>adam@incayellow.com</span></a><span class="handle">pull</span></div>');
	$("#ContactSheet .handle").click().toggle(
	function(){
		$("#ContactSheet").css("z-index","6").animate({
          top: '-254px'
        }, 250, 'swing', function() {
        });
	},
	function(){
		$("#ContactSheet").animate({
          top: '-464px'
        }, 250, 'swing', function() {
        }).css("z-index","4");
	}
	);
	
	
	
	/* Using custom settings */ 
	$("a.group").fancybox({ 'zoomSpeedIn': 300, 'zoomSpeedOut': 300, 'overlayShow': false });
	
}); //end of on load


