/*
 * Front-end Administration
 *
 * @author	Max Wheeler, Icelab Pty Ltd (http://icelab.com.au)
 *
 */
function ieHovers()
{
	if($.browser.msie) {
		$('#topnav ul>li').hover(
      function () {
        $(this).addClass('hover');
      }, 
      function () {
        $(this).removeClass('hover')
      }
    );
	}
}


function writeEmail (part1, part2) {
	var email = part1 + part2;
	document.write ('<a href="mailto:' + email + '">' + email + '</a>');
}


/*
#### Execute
*/
jQuery(document).ready(function($)
{
	ieHovers();
});