// JavaScript Document
function mOver(idLi)
{
  jQuery('#'+idLi).fadeTo('fast','0.7');
  
}
function mOut(idLi)
{
  jQuery('#'+idLi).customFadeOut('fast');
}
function hideAll()
{
  for(i=1;i<100;i++)
  {
    //jQuery('#thumb_'+i).css('opacity','0.6');
    jQuery('#thumb_'+i).hide();
    
  }
}

//CUSTOM FADE
(function(jQuery) {
	jQuery.fn.customFadeIn = function(speed, callback) {
		jQuery(this).fadeIn(speed, function() {
			if(jQuery.browser.msie)
				jQuery(this).get(0).style.removeAttribute('filter');
			if(callback != undefined)
				callback();
		});
	};
	jQuery.fn.customFadeOut = function(speed, callback) {
		jQuery(this).fadeOut(speed, function() {
			if(jQuery.browser.msie)
				jQuery(this).get(0).style.removeAttribute('filter');
			if(callback != undefined)
				callback();
		});
	};
})(jQuery);
