(function($){
	$(document).ready(function(){
		$('.tips').mouseover(function(){
			var tooltip = $('.tips').attr('rel').split('::');
			var tooltipBox = $(document.createElement('div')).attr('class','msgBox').appendTo(this).html('<div class="tooltipText"><h1>'+tooltip[0]+'</h1>'+tooltip[1]+'</div>');
			tooltipBox.stop(true, true);
			tooltipBox.show('drop',{direction: 'up'}, 500);
			return false;
		}).mouseout(function(){
			$('.msgBox').stop(true, true).hide('drop',{direction: 'down'}, 500, function(){ $(this).remove();});
			return false;
		});
	});
})(jQuery);
