// Diego Valobra 2010


jQuery(document).ready(function(){
	jQuery.fn.fadeToggle = function(speed, easing, callback) {
   return this.animate({opacity: 'toggle'}, speed, easing, callback);

}; 	
		$('.strumenti').hide();
		$('.open').bind('click',function(event){
			event.preventDefault();
		$(this).next('ul.strumenti').fadeToggle(500);	
		});
		
		$('#box_premium>div>a').hover(
		  function () {
			$(this).parent('').stop().fadeTo(300,0.7);
		  }, 
		  function () {
			$(this).parent('').stop().fadeTo(300,1);
		  });
		
 });		
