| Server IP : 172.67.178.83 / Your IP : 216.73.217.141 Web Server : Apache System : Linux hosting01.arsenalhost.com 4.18.0-425.13.1.lve.el8.x86_64 #1 SMP Mon Feb 27 15:23:24 EST 2023 x86_64 User : corbizre ( 1013) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/corbizre/rentalssearch.com/media/ |
Upload File : |
/// <reference path="jquery.js" />
$(function() {
Nifty("div#box,div#box2,div.box3,div#box4");
$("span#buttonRight > img").mouseover(function() {
left_move_ref = setInterval("left_move()", 50);
});
$("span#buttonRight > img").mouseout(function() {
clearInterval(left_move_ref);
});
$("span#buttonLeft > img").mouseover(function() {
right_move_ref = setInterval("right_move()", 50);
});
$("span#buttonLeft > img").mouseout(function() {
clearInterval(right_move_ref);
});
$("#AdvancedSearch").click(function() {
$("#areaAdvancedSearch").slideToggle("slow");
});
});
var left_move_ref = null;
var right_move_ref = null;
function left_move() {
var position = $("#areaScroll").position();
var new_position = (position.left - 5);
if (new_position > -1525)
$("#areaScroll").css("left", new_position);
}
function right_move() {
var position = $("#areaScroll").position();
var new_position = (position.left + 5);
if (new_position <= 0)
$("#areaScroll").css("left", new_position);
}