//alert('javascript included.');
var theMail = '';
theMail += 'mailto:';
theMail += 'webcontact';
theMail += '@';
theMail += 'mik';
theMail += 'nei';
theMail += '.';
theMail += 'net';
$(
	function(){
		$('.homeImage').load(function(){
			$('.homeText')./* css({'opacity': 0, 'display': 'block'}). */fadeTo(2000, .60);
		});
		$('.mailLink').attr('href', theMail);
		$('.camIcon').mouseover(function(){
			$('.imageInfo').fadeTo(500, .60);
		});
		$('.camIcon').mouseout(function(){
			$('.imageInfo').fadeTo(500, .00);
		});
	}
)