/*************************************************************************************************************
   created: Chasz Rainsford
   Date: 05/106/09 
   Version: 1.0
   
   Description: ACZONE Cluetips taken from jQuery cluetips: http://plugins.learningjquery.com/cluetip/demo/.
   
***************************************************************************************************************/
var ACZONE = ACZONE ||{};

ACZONE.cluetips = function(){
	 return{
       init: function(){
             jQuery('a.ajax_rounded').cluetip({
								cluetipClass: 'rounded',
								cluezIndex: 1000,
								dropShadow: false,
								sticky: false,
								ajaxCache: true,
								arrows: true,
								showTitle: true,
								width: 336,
								positionBy: 'bottomTop'
								});
								    
	 }
	};
}();
jQuery(document).ready(function(){
    ACZONE.cluetips.init();
});
