/*
	from: just opacity fade out
*/
jQuery.fn.opacTo = function(to,duration){
	if( !duration ) duration = 300;
	
	this.each(function(){
		$(this).animate({'opacity': to}, duration);
	});
	
	return this;
};
