var $$ = jQuery.noConflict();

$$(document).ready(function(){
	
	// Homeslide functionality
	
	$$('#homeslide').cycle({
		timeout: 4500
	});

	$$('.button-green').wrap('<span class="button-green-out">', '</span></span>');
	$$('.button-green-out').after('<div class="clearboth"></div>');
	
	// Selects 'Other Amount' radio button if user clicks to specify amount

	$$('.yf-otherval').click(function(){
		$$(this).parent().find('input').attr('checked', 'checked'); 
	});
});
