/*************************************
 *
 *  jquery common functions
 *
 * **********************************/
jQuery.noConflict();
/*
jQuery(document).ready(function(){
  updateGallery(); 
 
		
});

var time;
function updateGallery()
{
  clearTimeout(time);
  updateAjax();
  time = setTimeout("updateNext()", 6000);
}

function updateNext()
{
  updateGallery();
}

function updateAjax()
{
  jQuery.ajax({ url:"wp-content/themes/mzgraz/ajax.php", success:function(data){jQuery('#img_gallery').html(data); }});
}
*/

