$(function(){
	$('.wrapper #topnav UL>LI:first').addClass('first');
	$('.wrapper #topnav UL>LI:last').addClass('last');

	$('.wrapper #topnav UL>LI').hover(
		function () {
			if ($(this).parent('UL').parent('DIV').attr('class') != 'progress-bar'){
				//$(this).not('.first, .last').addClass('active');
				$(this).has('.subnav').addClass('active');
				$(this).children('A').addClass('active');
				$(this).not('.first, #item-11').css('background-image','url(images/nav/topnav-active-bg-'+$(this).attr('rel')+'.png)');
				
				if ($('HTML').is('.msie6, .msie7')){
					$(this).children('.subnav').show();
				}
			}
		}, 
		function () {
			if ($(this).parent('UL').parent('DIV').attr('class') != 'progress-bar'){
				$(this).removeClass('active');
				$(this).children('A').removeClass('active');
				$(this).not('.first, #item-11').css('background-image','none')
				
				if ($('HTML').is('.msie6, .msie7')){
					$(this).children('.subnav').hide();
				}
			}
		}
	);
	
	$('#topnav').not('.progress-bar').prepend('<span class="right-corner"></span>');
	
	$('.wrapper #topnav UL>LI').each(function(i){
		$(this).attr('id','item-'+i);
		$(this).attr('rel',i);
	});
	
	$('HTML').not('.msie').find('.wrapper #topnav UL LI .subnav').corner('6px bottom tr');
	$('HTML').not('.msie').find('.wrapper #topnav UL LI#item-8 .subnav, .wrapper #topnav UL LI#item-9 .subnav, .wrapper #topnav UL LI#item-10 .subnav, .wrapper #topnav UL LI#item-11 .subnav, .wrapper #topnav UL LI#item-12 .subnav').corner('6px bottom top');


});


