$(document).ready(function(){
						   

	if ($('ul#indexbannerticker').length > 0){
		$('ul#indexbannerticker').innerfade({
			speed: 1000,
			timeout: 5000,
			type: 'sequence',
			containerheight: '300px',
			children: null
		});
	}
	
	
	$(".index_img_portfolio").fadeTo("slow", 0.5);
	$(".index_img_portfolio").hover(function(){
			$(this).fadeTo("slow", 1.0);
		},function(){
		$(this).fadeTo("slow", 0.5);
	});

	var tabContainers = $('div.tabs > div');
	tabContainers.hide().filter(':first').show();
	
	$('div.tabs ul#submenu a').click(function () {
	        tabContainers.hide();
	        tabContainers.filter(this.hash).show();
	        $('div.tabs ul#submenu a').removeClass('selected');
	        $(this).addClass('selected');
	        return false;
	}).filter(':first').click();

});
