$(document).ready(function () {

    $('#menu').load('menu.html', function () {

        $('.tdMBtn').hover(
		    function () {
		        var img = $(this).children().attr('src').replace('_off', '_on');
		        $(this).children().attr('src', img);
		        $('.ttt').html(img);
		    },
		    function () {
		        var img = $(this).children().attr('src').replace('_on', '_off');
		        $(this).children().attr('src', img);
		        $('.ttt').html(img);
		    }
    	);

        $('#tdEBtn').hover(
		    function () {
		        $('.endCap').attr('src', 'http://jcserv.mine.nu/ds/tagDev/simg/end_right_over.png');
		    },
		    function () {
		        $('.endCap').attr('src', 'http://jcserv.mine.nu/ds/tagDev/simg/end_right.png');
		    }
	    );

        $('li.lnk').click(function () {
            window.location = $(this).attr('lnk');
        });
    });

    var imgs = '<div class="preImg" >'
		        + '<img src="http://jcserv.mine.nu/ds/tagDev/simg/end_right_over.png" alt="" />'
		        + '<img src="http://jcserv.mine.nu/ds/tagDev/simg/btnback_on.png" alt="" />'
		        + '<img src="http://jcserv.mine.nu/ds/tagDev/simg/home_on.png" alt="" />'
		        + '</div>';
    $('body').append(imgs);
});
