$(document).ready(function ()
{
	$('.navigationbar').each(function (index, item)
	{
		 var frame = $('<iframe frameborder="0"></iframe>');
		 frame.height($('ul', item).height());
		 frame.width($(item).width());
		 frame.css({ 'display': 'none',
								 'background-color' : '#fff', 
								 'border-style' : 'none', 
								 'position' : 'absolute',
								 'z-index' : '-1',
									'top' : '20px' });

		 $(item).append(frame);

		 $(item).bind('mouseover', function ()
		 {
			 $('iframe', this).show();
		 });

		 $(item).bind('mouseout', function ()
		 {
			 $('iframe', this).hide();
		 });
	});
});

