var cluetipOptions = {
	positionBy: 	'fixed',
	activation: 	'click',
	width: 			950,			// full width of site
	topOffset: 		15,
	leftOffset: 	15,
	sticky: 		true,
	closePosition: 	'title',
	cursor: 		'pointer',
	cluezIndex:		2000,
	fx: {             
		open:		'fadeIn',		// can be 'show' or 'slideDown' or 'fadeIn'
		openSpeed:	'500'
	},

	onShow: zIndexWorkaround(2000)
};	

function zIndexWorkaround(index) { // for IE7 z-index gheyness
	if(index) { index = parseInt(index); } 
	else { index = 1000; }
	
	jQuery.each(jQuery.browser, function(i) {
		if($.browser.msie){		
			$("div, ul").each(function(block, i) {
				  $(this).css("z-index", index--);
			});
		}
	});
}	