/*
 * My Site Functions
 *
 * - toggle search box input
 *
 */

$(document).ready(function() {
  	
  	// Clear search and mailing list fields content on click
  	$('input#keywords').toggleVal();
  	$('input#email').toggleVal();	
	
	// open external links in new window (without classes)
	$("a[href*='http://']:not([href*='"+location.hostname+"']),[href*='https://']:not([href*='"+location.hostname+"'])").click(function(){
	 	window.open(this.href);
	 	return false;
	});
	
	// validate contact form
	$(document).ready(function() {
		$("#freeform").validate({
		   rules: {
		     // compound rule
		     email: {
		       required: true,
		       email: true
		     }
		   }
		});
	});
	
	
	// validate mailing list form
	$(document).ready(function() {
		$("#mailinglist_form").validate({
		   rules: {
		     // compound rule
		     email: {
		       required: true,
		       email: true
		     }
		   }
		});
	});
	
	
	// mailng list modal window
	$().ready(function() {
  		$('#dialog').jqm();
	});

	
	


}); // end doc ready
