function drawAds() {
	var top_code = '<script type="text/javascript"><!--\
	google_ad_client = "pub-7921102296829482";\
	/* 468x60 - banner */\
	google_ad_slot = "6346500156";\
	google_ad_width = 468;\
	google_ad_height = 60;\
//-->\
</script>\
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></scr' + 'ipt>';
	$('#top_ads').html(top_code);
}

function hideMessages() {
	$('.message').each(function(i) {
		$(this).click(function() {
			$(this).fadeOut('slow');
		});
	});
	$('.message').fadeOut('slow');
}

$(document).ready(function() {
	var t = setTimeout("hideMessages()", 5000);
});

$(document).ready(function() {
	$('.carousel li.item').each(function() {
		$(this).mouseover(function() {
			$('.carousel-header h3 span').text($('span', this).text());
			$('.carousel-summary p em').text($('em', this).text());
			$('.carousel-image img').attr('src', $('small', this).text());
		});
	});
});