$(document).ready(function()
{
/*
	if ($.browser.msie)
	{
		$('.lucency').corner('top');
		$('.header').corner('top');
		$('.header > .jquery-corner').css('z-index', '1');
		
		$('.box').each(function()
		{
			$(this).corner().dropShadow();
		});
	}
*/
	$(function()
	{
		$(".teaser").smoothDivScroll(
		{
			autoScroll: 					"always",
			autoScrollDirection: 	"endlessloopright",
			autoScrollStep: 			1,
			autoScrollInterval: 	50
		});
	
		// Logo parade event handlers
		$(".teaser").bind("mouseover", function()
		{
			$(this).smoothDivScroll("stopAutoScroll");
		}).bind("mouseout", function()
		{
			$(this).smoothDivScroll("startAutoScroll");
		});
	});
});

