		//gallery cover effect
		$('.galleryCategories h3').css('opacity', 0);
		$('.galleryCategories').hover(function() {
			$(this).children('h3').stop().animate({opacity : 1 }, 'slow');
		}, function() {
			$(this).children('h3').stop().animate({opacity : 0 }, 'slow');
		});
		$('.galleryCategories').click(function() {
			 window.location=$(this).find('a').attr('href');
			 return false;
		});
		
		//photos thumb effects
		$('.galleryOverlay').css('background', '#000')
							 .animate({opacity : 0 }, 'slow');
		
		$('.galleryOverlay').hover(function() {
			$(this).css({'cursor' : 'pointer', 'border' : '2px solid #fff'})
				   .stop()
				   .animate({opacity : .5 }, 'slow');
		}, function() {
			$(this).stop().animate({opacity : 0 }, 'slow');
		});
