$(document).ready(function() {

$(".mouseover").hover(
 function()
 {
  this.src = this.src.replace("-static","-hover");
 },
 function()
 {
  this.src = this.src.replace("-hover","-static");
 }
);




});





// Form elements
function multiCheckBoxToggle(element) {
  if ($(element).prev('input[type=checkbox]').is(":checked")) {
      $(element).prev('input[type=checkbox]').attr('checked', false);
      $(element).removeClass("checkbox-option-selected");
  } else {
    $(element).prev('input[type=checkbox]').attr('checked', true);
     $(element).addClass("checkbox-option-selected");
  }  
}


function multiScore(id,value) {
    alert($('#'+id).prev('input[type=text]').val());
    //element.src = element.src.replace("-static","-hover");

    //alert("yes");
}
