
/* Utility functions for all JSoM pages
 * by daltenho 3/30/09
 */

// Handle contact form links (requirs jquery):
$(function() {
	// Select all contact form links:   
	$('a[href^=/contact/]')
	
	  // Add "mail" icon through css:
	  .css('background', 'url(/images/mail.png) no-repeat right center')
	  .css('padding-right', '19px')
	  .css('margin-right', '4px')
	  
	  // Register event handlers to open new Contact Form window:
	  .each( function(n) {
		this.onclick = function() {
				window.open( this.href, 'contactWin','width=750,height=650'); 
				return false;
	    }
	});
});