$(function(){
	
	$("ul.nav-mid-top li a").hover(
		function(){
			$(this).animate({ top: "-7px", height: "+=7px"}, 100);
		},
		function(){
			$(this).animate({ top: "0", height: "-=7px" }, 100);
		}
	);
	
	
	$('.slideshow').cycle();

	$('a[rel=external]').click(function(e){
		e.preventDefault();
		window.open($(this).attr("href"));
	});
	
	
	
});
