// JavaScript Document
//Logout Function
/*$(window).unload( function () {
								$.ajax(
									{		
										url: 'logout.php'
									}
								)
							} ); */


/*jQuery(function($){
   $(' a[href^="http"]').not('a[href*="nextenergy.ca"]').click(function(){
																					  		try {
																					  			var href = $(this).attr('href');
																								if ( href.indexOf("://") > 0 ) {
																									$.ajax(
																									{		
																										url: 'logout.php'
																									}
																								)
																								}
																					  		} catch( e ) {}
																						 }
																			)})
jQuery(window).unload(function() {
                $.get('logout.php');
                }); */
