jQuery(function ($) {
	$('#contactUsClick').click(function (e) {	
		$('#basic-modal-content').modal({overlayClose:true});
		return false;
	});
	
	$('.contactUs').click(function(e){
		e.preventDefault();
	    $('#basic-modal-content').modal({overlayClose:true});
		return false;
	});
	
	$('.recruitmentUs').click(function(e){
		e.preventDefault();
	    $('#basic-modal-content2').modal({overlayClose:true});
		return false;
	});
});
