jQuery(document).ready(function() {
	jQuery('.transparent').each(function() {
		jQuery(this).hover(function() {
			jQuery(this).stop().animate({ opacity: 0.0 }, 200);
		},
	   function() {
		   jQuery(this).stop().animate({ opacity: 1.0 }, 500);
	   });
	});
	jQuery('.transparent2').each(function() {
		jQuery(this).hover(function() {
			jQuery(this).stop().animate({ opacity: 1.0 }, 200);
		},
	   function() {
		   jQuery(this).stop().animate({ opacity: 0.5 }, 500);
	   });
	});
	jQuery('.tooltip').tipsy({gravity: 'n'}); // nw | n | ne | w | e | sw | s | se
});
