$('ul#bildegalleri').cycle({ 
	fx:     'fade',
	speed:  500,
	timeout: 0,
	next:   '#next', 
	prev:   '#back'
});

$('#showcase .slides ul').cycle({ 
	fx:     'scrollLeft',
	speed:  1000,
	timeout: 3500,
	next: "#next1",
	prev: "#back1" 
});

$('ul#tips').cycle({ 
	fx:     'fade',
	speed:  1000,
	timeout: 4000
});

$(".first").click(function(){
     window.location=$(this).find("a").attr("href");
     return false;
});


