
$(document).ready(function(){
	
    setActive();
	servicesDesc();
	prepareForms();
    toolTip();

});
function setActive() {
		$('#mainNav a').each(function(){
		var href = location.href;						  
		if(href==this.href) {
			$(this).parent().addClass('active');
		}
		});
									  };

function servicesDesc() {
	$("area").each(function() {
							var divID = $(this).attr('rel');
							$(this).easyTooltip({
							useElement: divID	
							});
							});

												  
};
function toolTip() {
	$("a.tip").each(function() {
							var divID = $(this).attr('rel');
							$(this).easyTooltip({
							useElement: divID	
							});
							});

												  
};



