
var d, dom, ie, ie4, ie5x, moz, mac, win, lin, old, ie5mac, ie5xwin, op;

d = document;
n = navigator;
na = n.appVersion;
nua = n.userAgent;
win = ( na.indexOf( 'Win' ) != -1 );
mac = ( na.indexOf( 'Mac' ) != -1 );
lin = ( nua.indexOf( 'Linux' ) != -1 );

if ( !d.layers ){
	dom = ( d.getElementById );
	op = ( nua.indexOf( 'Opera' ) != -1 );
	konq = ( nua.indexOf( 'Konqueror' ) != -1 );
	saf = ( nua.indexOf( 'Safari' ) != -1 );
	moz = ( nua.indexOf( 'Gecko' ) != -1 && !saf && !konq);
	ie = ( d.all && !op );
	ie4 = ( ie && !dom );

	/*
	ie5x tests only for functionality. ( dom||ie5x ) would be default settings. 
	Opera will register true in this test if set to identify as IE 5
	*/

	ie5x = ( d.all && dom );
	ie5mac = ( mac && ie5x );
	ie5xwin = ( win && ie5x );
	iewin = ( win && ie );
	opwin = ( win && op );
	opmac = ( mac && op );
	mozwin = ( win && moz );
	mozmac = ( mac && moz );
}

 {
	d = document;// shorthand so we don't have to write out document each time..
	
	if ( iewin ) {
		//d.write('<link rel = "stylesheet" type = "text\/css" href = "/css/ie5mac.css" />');
		document.write('<link href="http://www.hawaiianescapades.com/includes/style_ie_win.css" rel="stylesheet" type="text/css">')
		// alert("You are using a IE Win browser");
	}
	if ( ie5mac ) {
		//d.write('<link rel = "stylesheet" type = "text\/css" href = "/css/ie5mac.css" />');
		 document.write('<link href="http://www.hawaiianescapades.com/includes/style_ie_mac.css" rel="stylesheet" type="text/css">')
		 //alert("You are using a IE5 Mac browser");
	}
	
	else if ( opwin ){
		//d.write('<link rel = "stylesheet" type = "text\/css" href = "/css/ns4x.css" />');
		document.write('<link href="http://www.hawaiianescapades.com/includes/style_op_win.css" rel="stylesheet" type="text/css">')
		// alert("This is Opera Win browser");
		
	}
	else if ( opmac ){
		//d.write('<link rel = "stylesheet" type = "text\/css" href = "/css/ns4x.css" />');
		document.write('<link href="http://www.hawaiianescapades.com/includes/style_op_mac.css" rel="stylesheet" type="text/css">')
		// alert("This is Opera Mac browser");
	}
	else if ( mozwin ){
		//d.write('<link rel = "stylesheet" type = "text\/css" href = "/css/moz.css" />');
		 document.write('<link href="http://www.hawaiianescapades.com/includes/style_moz_win.css" rel="stylesheet" type="text/css">')
		 //alert("You are using a Firefox/Mozilla WIN browser");
	}
	else if ( mozmac ){
		//d.write('<link rel = "stylesheet" type = "text\/css" href = "/css/moz.css" />');
		document.write('<link href="http://www.hawaiianescapades.com/includes/style_moz_mac.css" rel="stylesheet" type="text/css">')
		 //alert("You are using a Firefox/Mozilla Mac browser");	}
	}
	
	else {
		//d.write('< link rel = "stylesheet" type = "text\/css" href = "/css/moz5.css" />');
		 document.write('<link href="http://www.hawaiianescapades.com/includes/style_ie_win.css" rel="stylesheet" type="text/css">')
		 //alert("You are using the last 'else' statment browser");
	}
}