/* 
Copyright 2004-2009 FX Universal, LLC, New York
*/
var dir = 0;
var bgcls = "tblRow";
var color = "#666666";
var imgSrc = "http://www.fxuniversal.com/images/home/quotes/";

function getData(){
		$.getJSON("Scripts/quotes/quotes_proxy.php", 
			function(data){
				$.each(data, function(i,item){
					if(item.cdir == 1){
						dir = "arrow_up.gif\"";
						bgcls= "tblRowGrn";
						color = "#669900";
					}else{
						dir = "arrow_dn.gif\"";
						bgcls= "tblRowRed";
						color = "#CC3300";
					}
$("#row"+item.id).replaceWith("<tr id=\"row"+item.id+"\" class=\""+bgcls+"\"><td>"+item.sym+"</td><td><font color=\""+color+"\">"+item.bid+"</font></td><td><img src="+ imgSrc + dir +"></img></td><td>"+item.time+"</td>");
					if(i == 7) return false;
			});		
        });		
};

$(document).ready(function(){

		$.getJSON("Scripts/quotes/quotes_proxy.php", 
			function(data){
				$.each(data, function(i,item){
					if(item.cdir == 1){
						dir = "arrow_up.gif";
						bgcls= "tblRowGrn";
						color = "#669900";
					}else{
						dir = "arrow_dn.gif";
						bgcls= "tblRowRed";
						color = "#CC3300";
					}
$("#quotesTable").append("<tr id=\"row"+item.id+"\" class=\""+bgcls+"\"><td>"+item.sym+"</td><td><font color=\""+color+"\">"+item.bid+"</font></td><td><img src="+ imgSrc + dir +"></img></td><td>"+item.time+"</td>");
					if(i == 7) return false;
			});		
        });		

	setInterval ( "getData()", 5000 );

});