// JavaScript Document

function showloading(container){
	jQuery(container).html('<span id="#loader" class="content-loader"><img src="styles/jqimg/wait.gif"></span>');
}
	
function hideloading(){
	jQuery('#loader').html('')
	jQuery('#loader').remove();
}
	
	
