function slideshow()
{
	$('#slideshow').cycle({
		timeout: 10000,
		before: onBefore, 
		after: onAfter,
		next:   '.next'
	});
	
	$('#promos').cycle();
}

///////////////////////////////////////////////////////////////

function onBefore() { 
	$('#ss_wrap ul#slideshow li .content').animate({
		left: -250
	}, 300);
} 
function onAfter() { 
  $(this).children('.content').animate({
		left: 0
	}, 400);
}

///////////////////////////////////////////////////////////////

function coverflip()
{

}

///////////////////////////////////////////////////////////////

$(document).ready(function() {
	slideshow();
	coverflip();
	$("#searchform input").labelify({ text: "label" });
});
