﻿function fb_share(lid) {
    var link_url = 'http://www.cambio.com/shows/cambio-style/cambio-style-premiere-back-to-school/?' + lid;
    var img_url = document.location.protocol + '//' + document.location.host + '/DesktopModules/jcpGame/looks_img/' + lid + '.jpg';
    FB.ui(
   {
       method: 'stream.publish',
       message: 'I just created my ultimate first-day look in the JCP Style Off Challenge at Cambio Style.',
       attachment: {
           name: 'My First Date Look',
           caption: 'Do you love it? Tell me what you think, and make your own!',
           //description: (''),
           href: link_url,
           'media': [{ 'type': 'image', 'src': img_url, 'href': link_url}]
       },
       user_message_prompt: 'Share your thoughts about JCP Style Off Challenge.'
   },
   function (response) {
       if (response && response.post_id) {
           //alert('Post was published.');
       } else {
           //alert('Post was not published.');
       }
   }
 );
}
