var RecaptchaOptions = {
   theme : 'custom',
   lang: 'en',
   custom_theme_widget: 'recaptcha_widget'
};

function cleardefault(element, defaultv) {
    if (element.value == defaultv) {
        element.value = "";
    }
}

function sendtoafriend(page) {
    window.open('/sendtoafriend/'+escape(page)+'/', '', 'scrollbars=yes,menubar=no,height=335,width=490,resizable=yes,toolbar=no,location=no,status=no');
    return false;
}

$(document).ready(function(){
    $("a[rel='popup']").colorbox({opacity:'0.85',iframe:true,width:"50%",height:"85%"});
    $("a[class='lightbox']").colorbox({opacity:'0.85'});
});

