﻿// Spartabikes.com javascript file

$(document).ready(function() {
    registerHover('gb');
    registerHover('nl');
    registerHover('de');
    registerHover('ch');
    registerHover('be');
    registerHover('fr');
    
    function registerHover(countryCode) {
        $('.'+countryCode+'_fullhotspot').hover(
            function() {
                $('#hoverimage').addClass('europe_'+countryCode);
                $('#'+countryCode+'_hotspot').addClass('hotspothover');
            },
            function() {
                $('#'+countryCode+'_hotspot').removeClass('hotspothover');
                $('#hoverimage').removeClass('europe_'+countryCode);
            }
        );
        
        $('.'+countryCode+'_fullhotspot').click(function() { location.href = 'http://www.sparta.nl/'+countryCode; });
    }
});
