$(document).ready(function () {
	$("[title]").mbTooltip({ 	// also $([domElement])..mbTooltip  >>  in this case only children element are involved
		opacity : .9,       	//opacity
		wait:500,           	//before show
		cssClass:"default",  	// default = default
		timePerWord:10,      	//time to show in milliseconds per word
		hasArrow:true,			// if you whant a little arrow on the corner
		hasShadow:true,
		shadowLeft:1,
		shadowColor:"black",
		fade:300,
		imgPath:"/scripts/mbTooltip/images/",
		ancor:"mouse", 			//"parent"  you can ancor the tooltip to the mouse position or at the bottom of the element
	});	

	// text area character counter on comments
	$("#textareaComment").charCounter(500, {
		container: "#word_count",
		format: "%1 characters remaining",
		pulse: false,
		delay: 100
	});
	
	// preload images in css
	$.preloadCssImages();	
});