// JavaScript Document
// What is $(document).ready ? See: http://flowplayer.org/tools/using.html#document_ready

$(document).ready(function() {
		
	// enable tooltip for "download" element. use the "slide" effect
	$(".download_now").tooltip({ 
								 /*events: { 
											def: 'onclick, mouseout'
										} ,*/
								 effect: 'slide',
								 position: 'bottom right'
								 /*offset: '190, 10'*/
								 
								
								}); 
});