jQuery.noConflict();
jQuery(document).ready(function($){
			
  	// Enable jQuery Form Validation
  	$("#RLC_contactForm").validator({
  		position: 'top center',
  		offset: [-10, 40],
  		message: '<div><em/></div>' //em element generates arrow
  	});
  	
	// select all desired input fields and attach tooltips to them
	$("#RLC_contactForm :input").tooltip({

		// place tooltip on the right edge
		position: "center right",

		// a little tweaking of the position
		offset: [-2, 10],

		// use the built-in fadeIn/fadeOut effect
		effect: "fade",

		// custom opacity setting
		opacity: 0.5	
		
	});
  				
	

});

