// show tips for the gallery
// on client hover
$(".tabs .client .galleryThumb").hover(function () {
	$.tip = $(document.createElement("img")).attr("src","image/clientTip.png").attr('class', 'clientTip').prependTo(this);
	$.tip.fadeIn(220);
}, function () {
	$.tip.fadeOut ();
});
