$(document).ready(function() {

	var applyShadow = function(e) {
		var clone = $(e).clone();
		$(e).after(clone).addClass("clone");
	}
	
	$(".logo, .slogan_top, .slogan_foot, #left h1, #right h1").each(function() {
		applyShadow(this);
	});

	$("#scroller").carouFredSel({
		height  : 145,
		width   : 900,
		items   : 5,
		scroll  : 1,
		align   : 'center'
	});

});
