
/**
 * @author sven
 */
$(document).ready(function()
{ 	
	var i=0;
	
	$('.slides').hide();
	 $('.item').each(function() {
        $(this).children("img").load(function() {
  		i++;
		
		if (i==3)
		{
			$(".first_slide").hide();
			$('.slides').show();
			
			$('.slides').cycle({
				fx: 'fade',
				timeout:2500
    		});
		}
		});
		
		
    });

	
	$('.item').mouseenter(function() {
  		$('.slides').cycle('pause'); 
		$(this).children(".info_text").slideDown();
	});
	
	$('.item').mouseleave(function() {
  		$('.slides').cycle('resume'); 
		$(this).children(".info_text").slideUp();
	});
	
	

	/* 
 */
    
});
