$(document).ready(function(){
	if (jQuery.browser.msie && jQuery.browser.version <= 6) {
		$('#menu-topmenu LI').hover(function(){
			$(this).addClass('iehover');
		}, function(){
			$(this).removeClass('iehover');
		});
	}
	
	$('#rotator').cycle({ 
		fx:     'scrollHorz', 
		prev:   '#prev_button', 
		next:   '#next_button', 
		timeout: 0
	});	
	
});


