var K5M = {
  displayPrice : function(id){
    $.getJSON("http://kmikeym.com/offers/current_price.json?callback=?", function(data){
      var result = '<style>\
#kmikeym-current-price {float:left; font-size: 14px; color: #999999; text-transform: uppercase; float:left; border: none; padding: 5px; margin-top: 5px}\
#kmikeym-current-price .flat {color: #000;}\
#kmikeym-current-price .positive {color: green;}\
#kmikeym-current-price .negative {color: red;}\
#kmikeym-current-price img {background-color: #000; border: none; margin:0; padding: 0; padding-left: 5px}\
</style>\
Current Price: $' + data.price + '<span class="diff '+ data.direction +'">' + '<img width="10" height="14" alt="'+ data.direction+'-arrow" src="http://kmikeym.com/images/arrow-'+data.direction+'.gif"/> '+ data.change
      
      $(id).append(result);
    })
  }
}

$(function() {
	K5M.displayPrice("#kmikeym-current-price")
})