jQuery(document).ready(function()
{
	
	jQuery('#secondary_nav_last').prev().css('width', '2px');
	jQuery('#secondary_nav_last').prev().css('display', 'none');
	
	if (jQuery('#tr_secondary_nav').get(0).children[1].className == 'menuItem2Active')
		jQuery('#secondary_nav_first').get(0).className = 'secondary_nav_first_hover';
	if (jQuery('#tr_secondary_nav').get(0).children[7].className == 'menuItem2Active')
		jQuery('#secondary_nav_last').get(0).className = 'secondary_nav_last_hover';
	
	if (jQuery('.menuItemActive').size() > 1 || jQuery('.menuItem2Active').size() > 0)
		jQuery('#menuItems').get(0).children[1].className = 'menuItem';

	if (jQuery('#hotspot').get(0) != null)
	{
		jQuery('#hotspot').get(0).style.position = 'relative';
		jQuery('#hotspot').get(0).style.left = '205px';
		jQuery('#hotspot').get(0).style.top = '-203px';
		
		jQuery('#hotspot').CreateBubblePopup(
		{
			innerHtmlStyle:
			{
				color:'#000000', 
				'text-align':'left'
			},
			themeName: 'azure',
			themePath: 'images/jquerybubblepopup-theme',
			tail: 
			{
				align:'left'
			},
			position: 'bottom',
			align: 'left',
			distance: '40px',
			selectable: true
		});
		
		jQuery('#hotspot').SetBubblePopupInnerHtml(jQuery('#popupText').html());
	}
});
