$(document).ready(function(){
		$(".lightbox a").fancybox({
					'autoDimensions' : false,
					'width': 800, 
					'height': 500 
				});


			$("ul#menu li a").corner("6px");

		$("ul.envelope_tabs").tabs(".tab-content > div", {
			effect: 'fade', 
		});
		
		
		
		
		
		$("#envelope").hover(
		  function () {
		  $("#contents").queue(function () {
		        $(this).css({"min-height": "1px"});
		        $(this).dequeue();
		      });
		    $("#contents").animate({"bottom": "206", "opacity": 1, "min-height": "330px" }, 500 );
		    
		  }, 
		  function () {
		    $("#contents").animate({"bottom": "0", "opacity": 1 , "min-height": "0px"}, 500 );
		    $("#contents").queue(function () {
		        $(this).css({"min-height": "300px"});
		        $(this).dequeue();
		      });
		  }
		);

			
});

