/* -----------------------------------------------------------------------
	    ________________     __    ____  ___________________    __ 
	   / ____/ ____/ __ \   / /   / __ \/ ____/  _/ ____/   |  / / 
	  / __/ / /   / / / /  / /   / / / / / __ / // /   / /| | / /  
	 / /___/ /___/ /_/ /  / /___/ /_/ / /_/ // // /___/ ___ |/ /___
	/_____/\____/\____/  /_____/\____/\____/___/\____/_/  |_/_____/
 
 http://ecoaus.com.au

	@created:		2008-11-26
	@author:	 	Max Wheeler, [Icelab Pty Ltd](http://icelab.com.au/)

----------------------------------------------------------------------- */



function ieHovers()
{
	if($.browser.msie) {
		$('#globalnav ul li').hover(
      function () {
        $(this).addClass('hover');
      }, 
      function () {
        $(this).removeClass('hover')
      }
    );
	}
}


/*
#### Execute
*/
jQuery(document).ready(function($)
{
	ieHovers();
});