// JavaScript Document


jQuery('#invisCD').animate({width:"0", height:"0", top:"500px"}, 100 );
	
jQuery("#cdImage").hover(
function () {
		  jQuery('#invisCD').animate({width:"400px", height:"400px", top:"300px"}, 1000 );
		  }, 
      function () {
		  jQuery('#invisCD').animate({width:"0", height:"0", top:"500px"}, 400 );
      }
    );

	