var Site = {
	start : function() {
		
		//POPUPS
		$("a.popup").click(function(event)
		{
			event.preventDefault();
			window.open($(this).attr("href"));
		});
		
		//CONTACT EMAIL OBFUSCATOR
		$("a.email").each(function()
		{	
			var email = String($(this).html()).replace(/\s*\(.+\)\s*/, "@");
			$(this).html(email);
		});
		
		$("#cied").datepicker({ dateFormat: 'dd/mm/yy'});
		$("#cipe").datepicker({ dateFormat: 'mm/yy' });
		
		if($('#frmBus').size() > 0) {
		function validateCntForm() {
		$('#frmBus').FormValidate({
				ajax:false
		});
		};
		$.getScript('js/jquery/plugins/form.js',validateCntForm);
		}	
	}
}

$(document).ready(Site.start);
