<!--
    $(document).ready(function(){
    
    $("#standard").hoverIntent(
      function () {
        $("#standardinfo").fadeIn( );
        $("#bundlesinfoholder").animate({marginLeft: "0px"}, 500 );}, 
      function () {
        $("#bundlesinfoholder").animate({marginLeft: "-172px"}, 500 );
        $("#standardinfo").fadeOut("slow" );
        
      }
    );
	

    $("#enhanced").hoverIntent(
      function () {
        $("#enhancedinfo").fadeIn( );
        $("#bundlesinfoholder").animate({marginLeft: "0px"}, 500 );}, 
      function () {
        $("#bundlesinfoholder").animate({marginLeft: "-172px"}, 500 );
        $("#enhancedinfo").fadeOut("slow" );
        
      }
    );
	

    $("#full").hoverIntent(
      function () {
        $("#fullinfo").fadeIn( );
        $("#bundlesinfoholder").animate({marginLeft: "0px"}, 500 );}, 
      function () {
        $("#bundlesinfoholder").animate({marginLeft: "-172px"}, 500 );
        $("#fullinfo").fadeOut("slow" );
        
      }
    );
	

    $("#negotiations").hoverIntent(
      function () {
        $("#negotiationsinfo").fadeIn( );
        $("#bundlesinfoholder").animate({marginLeft: "0px"}, 500 );}, 
      function () {
        $("#bundlesinfoholder").animate({marginLeft: "-172px"}, 500 );
        $("#negotiationsinfo").fadeOut("slow" );
        
      }
    );
	

    $("#broker").hoverIntent(
      function () {
        $("#brokerinfo").fadeIn( );
        $("#bundlesinfoholder").animate({marginLeft: "0px"}, 500 );}, 
      function () {
        $("#bundlesinfoholder").animate({marginLeft: "-172px"}, 500 );
        $("#brokerinfo").fadeOut("slow" );
        
      }
    );
	

	

  });


  //li with fade class
   $("li.fade").hover(function(){$(this).fadeOut(100);$(this).fadeIn(500);});


   //-->
//]]> 
