$(document).ready(function() {
    XToolbar.setup();
	$(".project-example ul li.first").mouseover(function(){
	      $(".project-example ul li.next").addClass("hide");
	    }).mouseout(function(){
	      $(".project-example ul li.next").removeClass("hide");
	    });

		$(".project-example ul li").hover(
		  function () {
		    $(this).addClass("hover");
		  },
		  function () {
		    $(this).removeClass("hover");
		  }
		);
		
	$("div.x-company-network").hover(
	  function () {
	    $(this).addClass("hover");
	  },
	  function () {
	    $(this).removeClass("hover");
	  }
	);

	/*$('a[rel~=external]').click(function(){
		window.open($(this).attr('href'));
		return false;
	});*/
	
});
