﻿$(function () {

    var attendeeImage = $("<a href='http://www.stonexpo.com/attendee'><img src='http://www.surfaces.com/Assets/img/angles/attendees.png' alt='Attendees' border='0' /></a>");
    var exhibitorImage = $("<a href='http://www.stonexpo.com/exhibitor'><img src='http://www.surfaces.com/Assets/img/angles/exhibitors.png' alt='Exhibitors' border='0' /></a>");
    
    attendeeImage.css({
        'float': 'right',
        'margin': '0 10px 0 0'
    });

    exhibitorImage.css({
        'float': 'right',
        'margin': '0 10px 0 0',
    });

    var url = window.location.href;

    if (url.indexOf("/attendee/") >= 0) {
        $('.Navigation ul.jd_menu').append(exhibitorImage);
    }
    else if (url.indexOf("/exhibitor/") >= 0) {
        $('.Navigation ul.jd_menu').append(attendeeImage);
    }

});
