/* thuc don */

function thucdon_init()
{
	$(".thucdon-selection-container").scrollContent({ 
		btnNext: ".thucdon-arrow-right", 
		btnPrev: ".thucdon-arrow-left", 
		speed: 500, 
		visible: 3 
	});
}

function thucdon_style()
{
	$(".thucdon-item-image").vibrate();
}

function kfc_init()
{
	try
	{
		$(".kfc-panel-list a").hover(
			function () {
				$(this).stop().animate({ padding: "20px 0" }, 500);
			}, 
			function () {
				$(this).stop().animate({ padding: "0px 0" });
			}
		);
	}
	catch(err)
	{
		alert("kfc_init: " + err);
	}
}
