
$(function () { 
	//--- Dock initialize
	$('#dock').Fisheye(
		{
			maxWidth: 100,
			items: 'a',
			itemsText: 'span',
			container: '.dock-container',
			itemWidth: 90,
			proximity: 100,
			alignment : 'left',
			valign: 'bottom',
			halign : 'center'
		}
	);
	//--- Contact
	$('a[rel*=external]').click( function() {
	window.open(this.href);
	return false;
	});
	$("#contact_button").click(function(e) {
		e.preventDefault();			
		$('#contact_mask').fadeTo("500",0.9);
		$("#contact").fadeIn("1000");	  
	});	
	$('#contact_mask').click(function (e) {		
		e.preventDefault();		
		$('#contact_mask, #contact').fadeOut("500");	
		});			
	$("span.slide").css("opacity" , 0);			
	$(".download_files").hover (  
	function () {
		$(this).find("span.slide").stop().animate({opacity:1}, 400)
		},
		function () {
		$(this).find("span.slide").stop().animate({opacity:0}, 400)	}
	);	 	
$("#mail").hover (  
	function () {
		$(this).animate( {color: "#ddd" }, { queue:false, duration:400 } )	
		},
		function () {
		$(this).animate( {color: "#888" }, { queue:false, duration:400 } )}
	);	
});
