
var active= false;
var active2 = false;
$(function() {
	active2 = $('li.selected');

		if ($.browser.name != "msie") {
		$('a.menu-item-link').corner("tl tr 4px");
		}
	$('#topmenu ul li a.menu-item-link').hover(
  function () {
	if(active) { 
	active.hide(300);
	active.parent().find('.menu-item-link').css({background: 'transparent none', color: '#FFFFFF'});
	}
	if(active2) {
	active2.removeClass('selected');
	active2.find('.submenutop').hide(300);
	}
    $(this).parent().find('.submenutop').show(300);
	$(this).css({background: '#FFFFFF', color: '#333333'});
	
	active = $(this).parent().find('.submenutop');
	
  }, 
  function () {

  }
);
			
$('.submenutop').hover(
  function () {

  }, 
  function () {
 $(this).hide(300);
  }
);

$('a.lightbox').lightBox();






			
			
		   });




