var $j = jQuery.noConflict();
     

$j(document).ready(function(){
       $j(".blog_content_cat8 .mybox").hover(
	function () {$j(this).addClass("showimg");},
	function () {$j(this).removeClass("showimg");});

       $j(".blog_content_cat3 .mybox").hover(
	function () {$j(this).addClass("showimg");},
	function () {$j(this).removeClass("showimg");});

       $j(".blog_content_cat4 .mybox").hover(
	function () {$j(this).addClass("showimg");},
	function () {$j(this).removeClass("showimg");});

       $j(".blog_content_cat9 .mybox").hover(
	function () {$j(this).addClass("showimg");},
	function () {$j(this).removeClass("showimg");});

       function diapo_god_next()
	{
          if (list_diapo_img[list_diapo_img_current + 1] == undefined)
	    list_diapo_img_current = 0;
	  else 
	    list_diapo_img_current++;

          $j('#diaporama_god img').fadeOut("normal", function() { 
	    $j('#diaporama_god img').attr('src', '/img/blank.gif');
	    $j('#diaporama_god img').attr('src', '/static/ext/resize.php?src=/img/upload/' + list_diapo_img[list_diapo_img_current].file + '&w=650&h=364');
	    $j('#diaporama_god img').fadeIn();
	    $j('#diaporama_god a').attr('href', list_diapo_img[list_diapo_img_current].url);
	  });


	  setTimeout(diapo_god_next, 3000);
	}


       if ($j('#diaporama_god').length>0)
	{
	  setTimeout(diapo_god_next, 3000);
	}

});

