$(document).ready( function () {
        $("div.ref").mouseover( function (){ $(this).addClass('on');  return false; });
		$("div.ref").mouseout( function (){ $(this).removeClass('on');  return false; });
    });
