jQuery(document).ready( function(){
 	// round corners
 	var n = jQuery('.rounded');
 	
 	if (n != null) {
 		n.corners('5px');
 	}
 	
 	//homepage program hover 
 	var m = jQuery('#programs li');
 	
 	if (m != null) {
 		m.hover( function(){ 
			jQuery(this).css({ backgroundColor:"#bcdef6"});
		}, function () {
			jQuery(this).css({backgroundColor: "#e0edf6"});
		});
 	};
 	
 	// Attach click events for GA
 	if(as = jQuery('.ErrorPage #primaryContent a')) {
 		as.click(function() {
			pageTracker._trackPageview('/outgoing/secure.tomypath.com');
 		});
 	}
});