﻿function setCuttingSolutions()
{
    if($('.get-results').length)
    {
        $('.get-results').hover(function(e){
            rollover($(this).children('input'), '-28px');
        }, function(e){
            rollover($(this).children('input'), '0px');
        });
    }
    
    if($('#selections-container > #buttons-container').length)
    {
        $('.button').css('cursor', 'pointer');
        
        $('.button').hover(function(e){
            rollover($(this).children('img'), '-23px');
        }, function(e){
            rollover($(this).children('img'), '0px');
        });
    }
    
    if($('#pagination-container').length)
    {
        $('.arrow').css('cursor', 'pointer');
        
        $('.arrow').hover(function(e){
            rollover($(this).children('img'), '-12px');
        }, function(e){
            rollover($(this).children('img'), '0px');
        });
    }
}

function rollover(img, pixel)
{
    img.css('margin-top', pixel);
}
