// JavaScript Document
$(document).ready(function() {
	$(".ventureLink").hover(
	  function () {
		$(".ventureContent").fadeIn().show();
	  }, 
	  function () {
		$(".ventureContent").hide();
	  }
	);
	$(".ventureContent").hover(
	  function () {
		$(".ventureContent").show();
	  }, 
	  function () {
		$(".ventureContent").hide();
	  }
	);
	$(".innerRightPanel .roundBox").first().addClass("roundBox1");
	$(".innerLeftPanel blockquote").last().addClass("last");
});

