$(document).ready(doStuff);

function doStuff() {
	$("#homepage_tabs").tabs().show();
	initFeatureLinks();
	clickGreenPx();
}

function initFeatureLinks() {
	$("div#button li").hover(
		function(){
			//make a variable and assign the hovered id to it
			var elid = $(this).attr("id");
			//hide the image currently there
			$("div#images div").hide();
			//fade in the image with the same id as the selected buttom
			$("div#images div#"+elid+"_img").fadeIn("slow");
		}
	);
}

function clickGreenPx() {
	$(document).delegate(
		"#greenpx",
		"click",
		function(){
				$.ajax({
					type: "POST",
					url: "/index.php?module=click",
//					data: "prodid="+prodId+"&yourname="+yourName+"&youremail="+yourEmail+"&friendsname="+friendsName+"&friendsemail="+friendsEmail+"&message="+message,
					dataType: "text",
					success: function(response){

					}
				}); // end $.ajax			}

		}
	);
} //clickGreenPx
