$(document).ready(function()
{

	if( $("#sheats").length )
	{
		$.ajax(
		{
			type: "GET",
			url: "http://www.feeditout.com/fio-data/cheatsheets/sheats.xml",
			dataType: "xml",
			success: function( xml ) 
			{
	 			$( xml ).find('sheat').each(function()
				{	
 					var sheat = $( this ).text();						
					var png = "http://www.feeditout.com/fio-data/cheatsheets/images/" + sheat + ".png";
					$("#clisting").append( $('<option></option>' ).val( png ).html( sheat ) );					
				});
			}
		});

		$( "#clisting" ).change(function() 
		{
  			var img = $( "#clisting" ).val();
			$( "#cimg" ).attr( "src" , img );
		});
	}
});

