jQuery.noConflict();
jQuery.fn.extend({changeHeight:function(h,o,_3,_4){
this.changeSize(h,null,o,_3,_4);
},changeWidth:function(w,o,_7,_8){
this.changeSize(null,w,o,_7,_8);
},changeOpacity:function(o,_a,_b){
this.changeSize(null,null,o,_a,_b);
},changeSize:function(h,w,o,_f,_10){
var str="";
for(var i=0;i<arguments.length;i++){
if(typeof arguments[i]=="string"){
arguments[i]="'"+arguments[i]+"'";
}
}
if(h!=null){
str="height: "+h;
}
if(w!=null&&str!=""){
str+=", width: "+w;
}else{
if(w!=null&&str==""){
str+="width: "+w;
}
}
if(o!=null&&str!=""){
str+=", opacity: "+o;
}else{
if(o!=null&&str==""){
str+="opacity: "+o;
}
}
eval("this.animate( {"+str+"}, "+_f+", "+_10+" );");
}});

