/************************************** Splendid *************************************
* Created By:		Jill Yosar
* Creation Date:	22nd September 2009
* Edited ----------------------------------------------------------------------------
*      By:              On:  
* Description -----------------------------------------------------------------------
*      This file handles the statistics hover on the Why Ebay page
*      Uses JQuery.
*      Example: 
*           1.3_Why=eBay.html
*
* Functions -------------------------------------------------------------------------
*       
*       
*       
* Event Handlers --------------------------------------------------------------------
*       
*       
*       
**************************************************************************************/

/********************************** Global Variables *********************************/
$(document).ready(function(){
	$("area").hover(
	function()
	{
		switch($(this).attr("id"))
		{
			case "shape1":
				$("#female").show();
				break;
			case "shape2":
				$("#male").show();
				break;
			case "shape3":
				$("#age1").show();
				break;
			case "shape4":
				$("#age2").show();
				break;
			case "shape5":
				$("#age3").show();
				break;
			case "shape6":
				$("#age4").show();
				break;
		}
	}, 
	function()
	{
		$(".hover").hide();
	}
);
});



