$(document).ready(function()
{ 
	var f = 2;
	var test = 1;

	 function change() {
		$('#prod').attr('src', 'img/prod'+f+'.jpg');
		$(".co").attr('class', '');
		$("#ls img").each(function() {
			if($(this).attr('src') == 'img/prod'+f+'no.jpg')
			{
				 $(this).attr('class', 'co');
			}
		});
		f++;
		if(f == 4)
		{
			f = 1;
		}
		$("#prod").fadeIn('slow');
			if(test == 1)
		{
			 $("#prod").delay(3000).fadeOut('slow', function() {
			change();
			});
		}
	}	
	$("#prod").delay(3000).fadeOut('slow', function() {
		change();
	});
	
	$("#ls img").live('hover', function() {
	 	f = $(this).attr('value');
	 	$(".co").attr('class', '');
 		$(this).attr('class', 'co');
 		$("#prod").attr('src', 'img/prod'+f+'.jpg');
		test = 5;
	});
			
	$("#ls img").live('mouseout', function() {
		test = 1;
		 change();
	});
});


