$(document).ready(function() {
    $('.shuffle').randomImage();
	$("ul.user_menu").superfish({ 
		animation: {height:'show'}, // slide-down effect without fade-in 
		delay:     800,             // 1.2 second delay on mouseout
		autoArrows: false			// Remove arrows
	});
	
	$('a[href^="https://"]').attr("target", "_blank");
	
	$("a[href*=.pdf]").click(function(){
  	window.open(this.href);
  	return false;
  });
	
});
