$(document).ready(function() {	
	$('ul#galleryList > li > a > div').css("opacity", "0.4");
	$('ul#galleryList > li > a > div').hoverIntent( fadeIn, fadeOut );
	$('a.rollOverImageLink').hoverIntent( showThis, hideThis );
});
function fadeIn(){
	$(this).fadeTo(350, 0);
;}
function fadeOut(){
	$(this).fadeTo(350, 0.4);
;}	
function showThis(){
	$(this).find('.overImage').fadeIn('fast');
;}
function hideThis(){
	$(this).find('.overImage').fadeOut('fast');
;}
