function showMovieList(currentPage,userType,curentMovieId){
	if(userType==1){
		before_server_call(userType);
	 	$.post("/movie_list",{showPage:true,currentPage:currentPage,curentMovieId:curentMovieId,userType:1}, function(content){
	    $("#our_movie_list").empty().append(content);  
	    });
	}else{
		before_server_call(userType);
 		$.post("/movie_list",{showPage:true,currentPage:currentPage,curentMovieId:curentMovieId,userType:0}, function(content){
        $("#users_movie_list").empty().append(content);  
        });
	}
} 

function before_server_call(userType) {
	if(userType==1){	
	$('#our_movie_list').empty().append(loader());
	}else{
	$('#users_movie_list').empty().append(loader());	
	}
}
function loader() {
		return '<div class="spinner"></div>';
} 