// slideshow
var img_path = path + 'slides/';
var img, img_count = 0, count = 0;
var img_names = ['izsop.jpg','citromfu.jpg','ananaszmenta.jpg','almamenta.jpg','mehecske.jpg','levendula.jpg','zsalyavirag.jpg','bazsalikomok.jpg'];

head.js('http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js',				
	function(){	
		// news items
		$('.news .body *').bind('mouseover', function(){
			$(this).closest('.body').addClass('over');
		});

		$('.news .body *').bind('mouseout', function(){
			$(this).closest('.body').removeClass('over');
		});

		$('.news .body p').bind('click', function(){
			var src = $(this).closest('.body').find('a').attr('href');
			location.href = src;
		});

		// article items
		$('.item-list .body *').bind('mouseover', function(){
			$(this).closest('.body').addClass('over');
		});

		$('.item-list .body *').bind('mouseout', function(){
			$(this).closest('.body').removeClass('over');
		});

		$('.item-list .body p').bind('click', function(){
			var src = $(this).closest('.body').find('a').attr('href');
			location.href = src;
		});

		// plants names
		$('.sidebar li *').bind('mouseover', function(){
			$(this).closest('li').addClass('over');
		});

		$('.sidebar li *').bind('mouseout', function(){
			$(this).closest('li').removeClass('over');
		});		

		for(var i=0; i<img_names.length; i++)
		{
			img = new Image();
			$(img).bind('load', function(){
				img_count++;
				if(img_count == img_names.length)
				{
					slideShow();
				}
			});
			img.src = img_path + img_names[i];			
		}
	}
);

function slideShow()
{
	if(count == img_count-1) count = 0;
	else count++;	
	$('#slide-img').hide();
	$('#slide-img').attr('src', img_path + img_names[count]);
	$('#slide-img').fadeIn(500, function(){
		setTimeout('slideShow()', 5000);
	});	
}
