 $(document).ready(function(){
   
   //pentru meniu vertical ca sa mearga si pe IE 6 si 7
 $("#navmenu-h li,#navmenu-v li").hover( function() { $(this).addClass("iehover"); }, function() { $(this).removeClass("iehover"); } );
   
   
     //daca exista pozele cu fancybox
    if ($('a.ad_pics').length != 0) {

	$("a.ad_pics").fancybox();
		}
 
 	$("#slidePromotii div:first").addClass('current');	
 
//end document ready
 });


/*--- slide ---*/
    $(function() {
		setInterval("rotateImages()", 3000);
	})

    function rotateImages() {
		var oCurPhoto = $('#slidePromotii div.current');
		var oNxtPhoto = oCurPhoto.next();
		if (oNxtPhoto.length  == 0)
		    oNxtPhoto = $('#slidePromotii div:first');
			
			oCurPhoto.removeClass('current').addClass('previous'); 
oNxtPhoto.css({ opacity: 0.0}).addClass('current').animate({ opacity: 1.0 } ,1000,
				function() {
					oCurPhoto.removeClass('previous');	
					//alert ("Test");
				});		
	}

/*--- end slide ---*/
