// JavaScript

$(document).ready(function()
{
	$('#portfolio li').hover(function(){  
		 $(".bildtext", this).stop().animate({top:'40px'},{queue:false,duration:160});  
	 }, function() {  
		 $(".bildtext", this).stop().animate({top:'100px'},{queue:false,duration:160});  
	 });  
	 
	$("#slider").easySlider({
		auto: false,
		prevText: 		' ',
		nextText: 		' ',
		continuous: true 
	});
});

