$(document).ready(function(){


	$('#rotator').innerfade({
		animationtype: 'fade',
		speed: 'normal',
		timeout: '5000',
		type: 'sequence',
		containerheight: '155px',
		runningclass: 'innerfade'
	});


	$('#sub li:has(ul) a:first-child').click(function(){

		$('#sub .open').removeClass('open');

		$(this).parent().addClass('open');


	});


	$('#sub li:not(li:has(ul)) a:first-child').click(function(){

		$('#sub .open').removeClass('open');

	});


});