$(document).ready(function(){
	// ie bugs
		if($.browser.msie & $.browser.version == 6){
		$('.service li, .topmenu li').hover(function(){
			$(this).addClass('iehover');
		},function(){
			$(this).removeClass('iehover');
		})
	}
	
	$('.carousel').jcarousel({scroll: 1, start: 3});
	$('.topmenu li').hover(function(){
		$(this).find('ul').stop(true, true);
		$(this).children('ul').fadeIn('fast');
	}, function(){
		$(this).children('ul').fadeOut('fast');
	})
})