// JavaScript Document

/*
jQuery(document).ready(function() {
	jQuery('#partnerlogos').cycle({ 
		fx:    'fade', 
		speed: 2000,
		timeout:  2000,
		pause:  1
	});
});
*/

 $(document).ready(function(){
	 
   $("#intro").addClass("selected");

	 $("#buttoninventors").mouseover(
				function () {
  				 $(this).addClass("selected");
  				 $(this).siblings().removeClass("selected");
					
					 $("#inventors").fadeIn();
					 $("#counselors").fadeOut();
					 $("#strategists").fadeOut();
					 $("#executives").fadeOut();
					 $("#investors").fadeOut();
					 $("#intro").fadeOut();
				});
			
	 $("#buttoncounselors").mouseover(
				function () {
  				 $(this).addClass("selected");
  				 $(this).siblings().removeClass("selected");
					 
					 $("#inventors").fadeOut();
					 $("#counselors").fadeIn();
					 $("#strategists").fadeOut();
					 $("#executives").fadeOut();
					 $("#investors").fadeOut();
					 $("#intro").fadeOut();
				});
			

	 $("#buttonstrategists").mouseover(
				function () {
  				 $(this).addClass("selected");
	  			 $(this).siblings().removeClass("selected");
				 
					 $("#inventors").fadeOut();
					 $("#counselors").fadeOut();
					 $("#strategists").fadeIn();
					 $("#executives").fadeOut();
					 $("#investors").fadeOut();
					 $("#intro").fadeOut();
				});


	$("#buttonexecutives").mouseover(
				function () {
  				 $(this).addClass("selected");
  				 $(this).siblings().removeClass("selected");
					 
					 $("#inventors").fadeOut();
					 $("#counselors").fadeOut();
					 $("#executives").fadeIn();
					 $("#strategists").fadeOut();
					 $("#investors").fadeOut();
					 $("#intro").fadeOut();
				});
			

	 $("#buttoninvestors").mouseover(
				function () {
  				 $(this).addClass("selected");
	  			 $(this).siblings().removeClass("selected");
				 
					 $("#inventors").fadeOut();
					 $("#counselors").fadeOut();
					 $("#strategists").fadeOut();
					 $("#executives").fadeOut();
					 $("#investors").fadeIn();
					 $("#intro").fadeOut();
				});

	 $("#homelink").mouseover(
				function () {
  				 $("#navigation").children().removeClass("selected");
				 
					 $("#inventors").fadeOut();
					 $("#counselors").fadeOut();
					 $("#strategists").fadeOut();
					 $("#executives").fadeOut();
					 $("#investors").fadeOut();
					 $("#intro").fadeIn();
				});

 });
 
		
		
 //buttoninventors
 //buttoncounsel
 //buttonstrategists
 //buttonstrategists
 
 
