$(document).ready(function(){
	$(".with-tooltip").simpletooltip();
	

});

$(document).ready(function(){

	
	$('a[title].galery-tooltip').each(function() {
		     $(this).simpletip({
		     	content : $(this).attr('title'),
		     	fixed: true,
   position: 'bottom',
   showEffect: 'slide',
   hideEffect: 'fade'

		     	}); 
		     	}); 


});

