var ME_Products = [
	                   {
	                	   id: '126',
	                	   title: 'T-shirt - Slate',
	                	   description: 'Made by hand just for you!',
	                	   price: '29.50',
	                	   image: 'http://www.luccaco.com/clientes/chooselovemore_miniature/images/img_slate.jpg',
	                	   other_image: 'http://www.luccaco.com/clientes/chooselovemore_miniature/images/slate_tshirt_female.jpg'
	                   },
	                   {
	                	   id: '125',
	                	   title: 'T-shirt - Peace Corps Green',
	                	   description: 'Made by hand just for you!',
	                	   price: '29.50',
	                	   image: 'http://www.luccaco.com/clientes/chooselovemore_miniature/images/img_peacecorps.jpg',
	                	   other_image: 'http://www.luccaco.com/clientes/chooselovemore_miniature/images/peacecorps_tshirt_female.jpg'
	                   },
	                   {
	                	   id: '124',
	                	   title: 'T-shirt - Sky',
	                	   description: 'Made by hand just for you!',
	                	   price: '29.50',
	                	   image: 'http://www.luccaco.com/clientes/chooselovemore_miniature/images/img_sky.jpg',
	                	   other_image: 'http://www.luccaco.com/clientes/chooselovemore_miniature/images/sky_tshirt.jpg'
	                   }
                   ];
/**
 * How to Add new product:
 * Just add the following code below the last "}" (dont forget tu put a comma (,) to add New.
 * {
 *	   id: 'produtct_id',
 *	   title: 'name_of_product',
 *	   description: 'simple_description_of_product',
 *	   price: 'price_with_decimals',
 *	   image: 'http_image_url',
 *	   other_image: 'http_other_image_url'
   }
   Ex:
   [{
	   id: '640',
	   title: 'T-shirt model 03',
	   description: 'Simple description t-shirt model 03',
	   price: '30.00',
	   image: 'http://www.luccaco.com/clientes/chooselovemore_miniature/images/t-shirt_miniature_earth_03.jpg',
	   other_image: 'http://www.luccaco.com/clientes/chooselovemore_miniature/images/t-shirt_miniature_earth_03_other.jpg'
   }]
   TO add new
   [{
	   id: '640',
	   title: 'T-shirt model 03',
	   description: 'Simple description t-shirt model 03',
	   price: '30.00',
	   image: 'http://www.luccaco.com/clientes/chooselovemore_miniature/images/t-shirt_miniature_earth_03.jpg',
	   other_image: 'http://www.luccaco.com/clientes/chooselovemore_miniature/images/t-shirt_miniature_earth_03_other.jpg'
    }, //<-- SEE THE COMA?
    { //<-- NOW JUST ADD NEW PRODUCT
	   id: '640',
	   title: 'T-shirt model 04',
	   description: 'Simple description t-shirt model 04',
	   price: '30.00',
	   image: 'http://www.luccaco.com/clientes/chooselovemore_miniature/images/t-shirt_miniature_earth_04.jpg',
	   other_image: 'http://www.luccaco.com/clientes/chooselovemore_miniature/images/t-shirt_miniature_earth_04_other.jpg'
    }
 * Got troubles? julio@juliovedovatto.com :)
 */