jQuery(document).ready(function($) {
	$('#navigation ul').hover( function () {
		$(this).parents('li').addClass('current_page_item'); 
	}, function () {
		$(this).parents('li').removeClass('current_page_item');
	});
	$('#header .switcher').hover( function () {
		$('.switcher ul').show(); 
	}, function () {
		$('.switcher ul').hide();
	});
	$('#page_subnav li:last-child').addClass('last');
});

jQuery(function($) {
  $('a[rel~=external]').attr('target', 'blank');
});
	
jQuery(function($){
  $('.commentlist li:even').addClass('even');
  $('.commentlist li:odd').addClass('odd');
  $('.modal_box').show();
});
