$(document).ready(function() {
	$('#arrow-total,#arrow-facility,#arrow-maintenance').hide()
	//jCarousel
	$('#slideshow').jcarousel();
	//browser detection
	var explorer;
	explorer = jQuery.support.hrefNormalized;
	if (explorer != true) {
		$('body').addClass('ie');
	};
	
	$('.ie .boxshadow').dropCurves({
		sX: 0,
		sY: 0,
		sColor: '#000'
	});
	$('#wecleanlist').height('210px');
	$('#arrow-total').delay(500).fadeIn('slow', function() {
		$('#arrow-facility').fadeIn('slow', function() {
			$('#arrow-maintenance').fadeIn('slow');
		});
	});
	
});

