// Code to run when DOM is ready
$(document).ready(function(){
	//shows more information tooltips
	showMoreInfo();
	// form notices and success msgs
	/*if($('p.notice')){
		$('p.notice').Highlight('slow',new Array('#FC4242','#C8D4F6'));
	}*/
});

function showMoreInfo(){
	$('a.more_info').cluetip({
			local: true
	});
	if( ! $.browser.msie){
		$.ImageBox.init(
			{
				loaderSRC: 'http://www.odessagate.com/images/loading.gif',
				closeHTML: '<img src="http://www.odessagate.com/images/close.jpg" />'
			}
		);
	}

}