$(document).ready(function()
{
	$('#main div').cycle({
		timeout: 	0,
		next:		'#next',
		prev:		'#previous',
		before:  	onBefore
	});
});

function onBefore() { 
	var text = this.title
	
	if( text.replace(",","</strong><br/>") != text )
		$('#product-description p').html("<strong>" + text.replace(",","</strong><br/>"));
	else
		$('#product-description p').html(text);
}

