$(document).ready(function(){ 
	
	$("#gallery a").fadeTo("fast", 0.4);
	$("#gallery a").lightBox();
	$("#gallery a").mouseover(function(){
		$(this).fadeTo("fast", 1);
	});
	$("#gallery a").mouseout(function(){
		$(this).fadeTo("fast", 0.4);
	});
	$("#contactSubmit").fadeTo("fast", 0.6);
	$("#contactSubmit").mouseover(function(){
		$(this).fadeTo("fast", 1);
	});
	$("#contactSubmit").mouseout(function(){
		$(this).fadeTo("fast", 0.6);
	});
	$("#contactLeft input, #contactLeft textarea").focus(function(){
		$("#contactLeft input, #contactLeft textarea").css("border-color", "#161618");
		$(this).css("border-color", "#2e2e32");
	});
});


