
$(document).ready(function(){
             $(".button").hover(function(){ 
                $(this).children( "img" ) 
                .animate({top:"-10px"}, 200).animate({top:"-4px"}, 200) // first jump 
                .animate({top:"-7px"}, 100).animate({top:"-4px"}, 100) // second jump 
                .animate({top:"-6px"}, 100).animate({top:"-4px"}, 100); // the last jump 
            });
                                                        
    $("#our_rating").tooltip({ effect: 'slide'}); 
	$("#share").tooltip({ effect: 'slide', tip: '.tooltipsmall'});
																	
	$("a[rel='screencaps']").fancybox({
		'overlayOpacity': 0.6
	});
	$("a#rating_ie").fancybox({
		'overlayOpacity': 0.6,
		'padding': 2
	});
	$("a#share_ie").fancybox({
		'titleShow': false,
		'overlayOpacity': 0.7,
		'padding': 2
	});
	$("a.facts").fancybox({
		'hideOnContentClick': false,
		'overlayOpacity': 0.8
	});
	$("a#contact").fancybox({
		'hideOnContentClick': false,
		'showCloseButton': false,
		'titleShow': false,
		'padding': 0,
		'overlayOpacity': 0.4,
		'scrolling': 'no'
	});    
}); 
