jQuery(function($){
	
	// IE last-child selectors
	$('header#top nav li li:first-child').addClass('first');
	$('#social-links ul li:first-child').addClass('first');
	$('header#top nav li li:last-child').addClass('last');
	$('.browserChrome header#top nav li.navigate li:nth-last-child(2)').addClass('last');
	
	//Slide the dropdown up and down on click
	$("header#top nav li").hover(
	  function(){
	  	$(this).children('a').addClass('open')
		$(this).find('ul').slideToggle(100);
	  },
	  function(){
	  	$(this).find('ul').slideToggle(100);
	  	$(this).children('a').removeClass("open");
	  }	
	);
	
	$('a.more-link').parent().addClass('go');
	$('.aligncenter').parents('p').addClass('center-wrap');

});

