﻿//////stuff fro custom styled form elemnts
$(document).ready(function () {

    $('#location').selectbox2();
    $('#communities').selectbox2();
    $('#range1').selectbox2();
    $('#range2').selectbox2();
});


$(document).ready(function () {
    $('#mySubmit').hover(
            function () { // Change the input image's source when we "roll on"
                $(this).attr({ src: '/Portals/_default/Skins/RockyCreek/images/submit_btn_on.jpg' });
            },
            function () { // Change the input image's source back to the default on "roll off"
                $(this).attr({ src: '/Portals/_default/Skins/RockyCreek/images/submit_btn_off.jpg' });
            }
        );
});


///////////////////////////////////////////////////////////////////////
        function goPopup() {
            document.getElementById("frameID").src = "/Portals/_default/Skins/RockyCreek/map_e.html";
            loadPopup();
            centerPopup();
        }


function goPopupSub(swi) {
    loadPopup();
    centerPopup();
    var placeGo = swi;
    document.getElementById('frameID').contentWindow.sTerms(placeGo);
    document.getElementById('frameID').contentWindow.Demo.getDirections();



}

function make_blank() {
    document.forms[0].textfield.value = "";
}

/////makes rollovers
$(function () {
    $('img[data-hover]').hover(function () {
        $(this).attr('tmp', $(this).attr('src')).attr('src', $(this).attr('data-hover')).attr('data-hover', $(this).attr('tmp')).removeAttr('tmp');
    }).each(function () {
        $('<img />').attr('src', $(this).attr('data-hover'));
    }); ;
}); 
