var toggleQuestionForm = function(){
	if($("#autobid_price").length>0) {
	    alert("This option is disabled in live auction.");
	    return;
	}

	$("#questionForm").animate({'height': 'toggle'},500,function(){
		
	});
}
var preload = function(){
	$.get(base+"home/preload",
	function(data){
		$("#preload").html(data);
	});

}

var displayPopup = function(){
	$("#popup").show();

}

var loadRegister = function(){
	window.location.href = base+'register';

}

var hidePopup = function(){
$("#popup").hide();

}

var hideActive = function(){
$("#activated").hide();

}
var showActive = function(){
$("#activated").show();

}

