// JavaScript Document
 $(document).ready(function() {
   	showTopProduct(2);
 });

function showTopProduct(type){
	var current = document.getElementById("current_open").value;
	if(current != type && current != ""){
		document.getElementById("top_pro_"+current).className = "";
	}
	document.getElementById("current_open").value = type;
	document.getElementById("product_top_home").innerHTML = '<img src=images/awaiting.gif> ... ';
	document.getElementById("top_pro_"+type).className = "top_selected";
	$.post("ajax.php",
			{
				action:"get_top_pro"
				,type:type
			},
			function(data){
				document.getElementById('product_top_home').innerHTML = data;
			}
	);	
}
