$(document).ready(function(){

	$(".oindex").bind('mouseover',function(){
			
			var a = $(this).attr('alt');
			$('#oindexSW').html(a);
	
	});



	$(".tool").tooltip({ 
	    track: true, 
	    delay: 0, 
	    showURL: false, 
	    showBody: " - ", 
	    fade: 250 
	});
	
	$(".tooltip").tooltip({ 
	    track: true, 
	    delay: 0, 
	    showURL: false, 
	    showBody: " - ", 
	    fade: 250 
	});


});