	/*
	*	jquery navigation stuff
	*/
	$(document).ready(function(){
			
			var statusActive 		= "active";
			var statusInactive 		= "normal";
			var statusInactiveOur 	= "normalLogout";
			
			// jQuery.browser.msie && jQuery.browser.version < 7
			var isIE = jQuery.browser.msie;
			if ( isIE )
				{
					/*
					$('.rollOver').css('opacity', '0.5');
					$('.rollOver').css('display', 'inline'); 
					$('.rollOver').css('background', 'none');
					
					$('.rollOver').parent(  ).attr( "class" ) == statusActive
					*/
					$('.rollOver').each(function (thediv) {
						// alert ($(thediv) );
						var checkStatus = $(this).parent(  ).attr( "class" );
						
						switch ( checkStatus )
							{
								case statusActive:
									
								break;
								case statusInactiveOur:
									// $(this).fadeTo("fast", 1);
									$(this).css('opacity', '.5');
									if ( isIE ) { $(this).css('display', 'inline'); $(this).css('background', 'none') };
								break;
								case statusInactive:
									// $(this).fadeTo("fast", 1);
									$(this).css('opacity', '.5');
									if ( isIE ) { $(this).css('display', 'inline'); $(this).css('background', 'none') };
								break;
								default:
									// $(this).fadeTo("fast", 1);
									$(this).css('opacity', '.5');
									if ( isIE ) { $(this).css('display', 'inline'); $(this).css('background', 'none') };
								break;
							}
					});
				}
			
			
			$('.rollOver').hover(function(){
				var checkStatus = $( this ).parent(  ).attr( "class" );
				switch ( checkStatus )
					{
						case statusActive:
							
						break;
						case statusInactiveOur:
							// $(this).fadeTo("fast", 1);
							$(this).css('opacity', '1');
							if ( isIE ) { $(this).css('display', 'inline'); $(this).css('background', 'none') };
						break;
						case statusInactive:
							// $(this).fadeTo("fast", 1);
							$(this).css('opacity', '1');
							if ( isIE ) { $(this).css('display', 'inline'); $(this).css('background', 'none') };
						break;
						default:
							// $(this).fadeTo("fast", 1);
							$(this).css('opacity', '1');
							if ( isIE ) { $(this).css('display', 'inline'); $(this).css('background', 'none') };
						break;
					}
			},function(){
				var checkStatus = $( this ).parent(  ).attr( "class" );
				switch ( checkStatus )
					{
						case statusActive:
							
						break;
						case statusInactiveOur:
							// $(this).fadeTo("fast", 0.5);
							$(this).css('opacity', '0.5');
							if ( isIE ) { $(this).css('display', 'inline'); $(this).css('backgroundColor', '#32323a') };
						break;
						case statusInactive:
							// $(this).fadeTo("fast", 0.5);
							$(this).css('opacity', '0.5');
							if ( isIE ) { $(this).css('display', 'inline'); $(this).css('backgroundColor', '#32323a') };
						break;
						default:
							// $(this).fadeTo("fast", 0.5);
							$(this).css('opacity', '0.5');
							if ( isIE ) { $(this).css('display', 'inline'); $(this).css('backgroundColor', '#32323a') };
						break;
					}
			});
			
		});


