$(document).ready(function() {
    
    $('#smoothmenu1 li.current').append('<table class="top" border=0 cellpadding=0 cellspacing=0><tr><td class="left"><img src="/DesktopModules/FTMENU/Menu/Fader/images/pixel.gif" width="10" height="45" /></td><td class="middle"></td><td class="right"><img src="/DesktopModules/FTMENU/Menu/Fader/images/pixel.gif" width="10" height="45" /></td></tr></table>');
    $('#smoothmenu1 li.current').children('table').fadeIn('500');

    $('#smoothmenu1 li.root').append('<table class="top" border=0 cellpadding=0 cellspacing=0><tr><td class="left"><img src="/DesktopModules/FTMENU/Menu/Fader/images/pixel.gif" width="10" height="45" /></td><td class="middle"></td><td class="right"><img src="/DesktopModules/FTMENU/Menu/Fader/images/pixel.gif" width="10" height="45" /></td></tr></table>');
    $('#smoothmenu1 li.root').hover(
		function() {
    $(this).children('table').fadeIn('500');
    $('#smoothmenu1 li.current').children('table').fadeOut('500');
		},
		function() {
		    $(this).children('table').fadeOut('500');
		    $('#smoothmenu1 li.current').children('table').fadeIn('500');
		});

	$('#smoothmenu1 li.current').hover(
		function() {
		    $(this).children('table').fadeIn('500');
		},
		function() {
		$(this).children('table').fadeIn('500');
		});

$('ul li').css({ visibility: "visible"});
$('a').css({ visibility: "visible" });

});

ddsmoothmenu.init({
	mainmenuid: "smoothmenu1",
	orientation: 'h', 
	classname: 'ddsmoothmenu',
	contentsource: "markup"
})