jQuery(document).ready(function(){

	jQuery('#carousel').jcarousel({
    });
	
	
	jQuery(".phpwcmsArticleListImage img").hover(function () {
	jQuery(this).animate({ opacity: 1}, 250 );}, 
	function () {
	jQuery(this).animate({ opacity: 0.9}, 250 );});

	jQuery(".phpwcmsArticleListImage img").animate({opacity: 0.9},50);
	
});