// Modify the theme of the recaptcha to match the color scheme of the site
var RecaptchaOptions = {
	theme : 'custom',
	lang: 'en',
	custom_theme_widget: 'recaptcha_widget'
};

$(document).ready(function(){
    $('.recaptcha_only_if_image').html("Verification: ");

    $('#panel').cycle('fade');
	$(function() {
		if ($.browser.msie && parseInt($.browser.version)< 7) {
			$(".menu li").hover(
				function() {
					$(this).addClass("sf");
				},
				function() {
					$(this).removeClass("sf");
				});
		}
	});
 });
