$(document).ready(function(){
	$.ajax({
		type: "GET",
		url: "list.xml",
		dataType: "xml",
		success: function(xml) {
			//SLIDER 
			if($("#slider_wrapper").length) 
			{
				$(xml).find('item').each(function(){
					var id = $(this).attr('id');
					var title = $(this).find('name').text();
					var url = $(this).find('url').text();
					$('<div class="item_holder"><a href="products/id_'+id+'/index.php" id="link_'+id+'"></a></div>').appendTo('#item_holder');
					$(this).each(function(){
						var smalltext = $(this).find('small').text();
						var picture = $(this).find('pic').text();
						$('<img src="'+base_url+'/images_products/'+picture+'_200.jpg"/>').appendTo('#link_'+id);
						$('<h3></h3>').html(title).appendTo('#link_'+id);
						$('<span class="brief"></span>').html(smalltext).appendTo('#link_'+id);
					});
				});
			}
			else if($("#products").length)
			{
				$(xml).find('item').each(function(){
					var id = $(this).attr('id');
					var title = $(this).find('name').text();
					var picture = $(this).find('pic').text();
					var text = $(this).find('text').text();
					
					$(this).each(function(){
						$('<div class="list_bg"><div class="col2_1"><a href="products/id_'+id+'/index.php"><img src="'+base_url+'images_products/'+picture+'_200.jpg"/>'
						+'</a></div>'
						+'<div class="col2_2"><div style="padding-right:50px"><h2>'+title+'</h2><p>'+text+'</p></div></div>'
						+'<div class="clear">&nbsp;</div></div>').appendTo('#products');
					});
				});
			
			}//END ELSE
			
		}//END SUCCESS
	});
    
   
});