$(document).ready(function(){


$(function() {$('#lighting-scroller').jScrollHorizontalPane({resize:true, showArrows:true, arrowSize:20, dragMaxWidth:50, scrollbarHeight:20, animateStep:3, animateInterval:100, maintainPosition:true});});

$(function() {$('#wiring-scroller').jScrollHorizontalPane({resize:true, showArrows:true, arrowSize:20, dragMaxWidth:50, scrollbarHeight:20, animateStep:3, animateInterval:100, maintainPosition:true});});

$(function() {$('#casestudies-scroller').jScrollHorizontalPane({resize:true, showArrows:true, arrowSize:20, dragMaxWidth:50, scrollbarHeight:20, animateStep:3, animateInterval:100, maintainPosition:true});});

$(function() {$('#brands-scroller').jScrollHorizontalPane({resize:true, showArrows:false, arrowSize:20, dragMaxWidth:50, scrollbarHeight:20, animateStep:3, animateInterval:100, maintainPosition:true});});





//rollovers
$(function() {
   $('.rover').hover(function() {
        var currentImg = $(this).attr('src');
        $(this).attr('src', $(this).attr('hover'));
        $(this).attr('hover', currentImg);
    }, function() {
        var currentImg = $(this).attr('src');
        $(this).attr('src', $(this).attr('hover'));
        $(this).attr('hover', currentImg);
    });
});

});//document ready
