$(document).ready(function () {
	$('#nav > li').hover(function(){ $(this).addClass('hover'); }, function(){ $(this).removeClass('hover'); });
	$('#home_carousel').carousel({duration: 700, paginated: true, padding: 800, change: homeCarouselChange});

	// Load custom form controls
	$('#donate_form select').dropdown();
	$('#donate_form input[type=checkbox]').checkbox();
	$('#donate_form input[type=radio]').radio();

	$('#checkout_form_body select').dropdown({width: 261});
	$('#donate_form_container select').dropdown();
	$('.cart_form select').dropdown({width: 219});
	$('#credit_info select').dropdown({width: 75});
	$('#designation select').dropdown({width: 261});
	$('.cart_form select').dropdown();

	$('#checkout_form input[type=checkbox]').checkbox();
	$('#checkout_form input[type=radio]').radio();
});


/**
 * Callbacks
 */
function homeCarouselChange(event, ui)
{
	$('#home_feature_content h2').html($('#home_carousel .carousel_items li').eq(ui.currentPage).find('h2').html());
}
