jQuery.noConflict();

jQuery(document).ready(function($){

	$('.map_link').click(function (e) {
		e.preventDefault();
		
		newwindow=window.open(this.href,'name','height=600,width=800');
		if (window.focus) {newwindow.focus()}
	});
	
	
	$('#print').click(function(e) {
		window.print();
	});
	
	$('#email').focus(function() {
		$(this).val('');
	});

});