$(function() {
	$(".toate_produsele").jCarouselLite({
		btnNext: ".prev",
		btnPrev: ".next",
		speed: "800",
		visible: "10",
		circular: true
	});  
});
	
$(document).ready(function(){ 
    $(document).pngFix();
	
	$('#meniu img').mouseover(function() {
		sursa = this.src
		ceva = sursa.replace('.jpg','_over.jpg') 
		this.src=ceva
	}).mouseout(function() {
		sursa = this.src
		ceva = sursa.replace('_over.jpg','.jpg') 
		this.src=ceva
	})
	
}); 

function detalii_produs(id) {
	$('#ajax_produs').ajaxStart(function() {
		$(this).html('<img src="images/loading.gif" style="margin-top:70px; margin-left:340px;"/>');
	})
	
	$.ajax({
	   type: "POST",
	   url: "ajax/",
	   data: "id="+id+"",
	   success: function(msg){
	   		$('#ajax_produs').html(msg);
	   		$('#ajax_produs').show("slide", { direction: "right" }, 500);
	   }
	 });

}