(function($) {
	$(document).ready(function(){
		$('.submenu').width($('.topmenu-item').width()-2);

		$('.topmenu-item').hover(
		  function () {
			$('.submenu', this).stop(true, true).slideDown(200);
		  }, 
		  function () {
			$('.submenu', this).slideUp(200);
		  }
		);
		//$('#share-slide').width($('#share').width()-2);

		$('#share').hover(
		  function () {
			$('#share').width($('#share-slide').width());
			$('#share-slide', this).stop(true, true).show(200);
		  }, 
		  function () {
			$('#share-slide', this).slideUp(200);
		  }
		);
	});
})(jQuery);
