$(document).ready(function() {

	Cufon.replace('h1')('h2')('h3')('.menuMainline');
	
	if ($('.closeWarning').length) {
		$('.closeWarning').click(function () {
		  $('#ie6warning').remove();
		});
	}
	
	
	if ($('#logoCarousel').length) {
		$('#logoCarousel').cycle({ 
			fx: 'scrollHorz',
			cssFirst:{
				background: 'none'
			},
			cssBefore:{
				background: 'none'
			},
			prev: '#prevLogo',
			next: '#nextLogo',
			pause: true,
			speed:500, 
			timeout:4000
			}
		);
		
		$('#prevLogo').hover(
			function() { $(this).addClass('hover'); },
			function() { $(this).removeClass('hover'); }
		);
		
		$('#nextLogo').hover(
			function() { $(this).addClass('hover'); },
			function() { $(this).removeClass('hover'); }
		);
	}

});
