$(document).ready(function(){
						   
$('ul#indexbannerticker').innerfade({
						speed: 1000,
						timeout: 5000,
						type: 'sequence',
						containerheight: '282px'
					});


$(".index_img_portfolio").fadeTo("slow", 0.5);
$(".index_img_portfolio").hover(function(){
$(this).fadeTo("slow", 1.0);
},function(){
$(this).fadeTo("slow", 0.5);
});



});

