$(document).ready(function() { 
	if (jQuery.browser = "msie" && jQuery.browser.version == "6.0" ) {
		$("#ie6").overlay({

			// custom top position
			top: 'center',

			// some expose tweaks suitable for facebox-looking dialogs
			expose: {

				// you might also consider a "transparent" color for the mask
				color: '#fff',

				// load mask a little faster
				loadSpeed: 200,

				// highly transparent
				opacity: 0.5
			},

			// disable this for modal dialog-type of overlays
			closeOnClick: false,

			// we want to use the programming API
			api: true

		// load it immediately after the construction
		}).load();
	}
/*	$("#left a").mouseover( function () {
		$(this).expose({api: true}).load();
	});
		
	$("#left li").mouseover( function () {
		$(this).expose({api: true}).load();
	}).mouseout( function () {
		$(this).expose({api: true}).close();
	});
*/
});

