jQuery(function(){

	jQuery('#fmThumb').submit(function(){
		var params = null;
		var options = {
			callBefore:function(){
				jQuery('#btn_submit').html(jQuery('<div></div>').attr('class','inline_loader'));
			},
			callAfterFailed:function(data){
				jQuery('#btn_submit').html('<button name="" type="submit" value="" class="submit" />');
			}
		}
		return Goingup.Form.Submit(this,params,options);	
	});

	jQuery('#thumb-size>a[href$=size]').click(function(){
		jQuery('#thumb-size>a[href$=size]').removeClass('current');
		jQuery(this).addClass('current');
		jQuery('.tabs').hide();
		jQuery('#tab'+this.rel).show();
	});
	
	
});
