/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */


function ajaxloader(divid){

	document.getElementById(divid).innerHTML = "<div style='padding: 10px; width: 64px; margin-left: auto; margin-right: auto;'><img src='/images/preloader.gif' style='border: 0;'></div>";

}



function catbox(currentcatid){
    ajaxloader('catbox');
    

     $.ajax({
         url: "/ajax_cat_box.php",
         method: 'GET',
         data: "ccid="+currentcatid,
         dataType: 'html',
         success: function display(data){
		 	document.getElementById("catbox").innerHTML = data;

	 	}
     });
}
