﻿$(document).ready(function() {
    $('#headerpics').innerfade({
        speed: 1000,
        timeout: 6000
    });

    $('.contactlink').click(function() {
        window.location = 'gent-motors_contact.asp';
        return false;
    });

    $('.contactlink').hover(function() {
        $(this).css('cursor', 'pointer');
    }, function() {
        $(this).css('cursor', 'auto');
    });
});


