/**
 * Collage enhancement
 *
 * @author docnet <support@doc-net.com>
 * @copyright Copyright &copy; 2010, Doctor Net Limited
 */

/**
 *
 */
bol_focused = Array();
bol_focused['MAN'] = false;
bol_focused['WOMAN'] = false;
$(document).ready(function() {
/* Turning this off for now
   $('IMG.collageimage').hover(function() {
      var str_alt = $(this).attr('alt');
      if (bol_focused[str_alt] == false) {
         $('IMG.collageimage[alt=' + str_alt + ']').fadeTo("normal", 1.0);
         $('IMG.collageimage:not([alt=' + str_alt + '])').fadeTo("normal", 0.2);
         $('#gender_title').html(str_alt);
         bol_focused[str_alt] = true;
         for (sales_audience in bol_focused) {
            if (sales_audience != str_alt) {
               bol_focused[sales_audience] = false;
            }
         }
      }
   }, function() {});
   $('#collage_container').hover(function() {}, function() {
      $('IMG.collageimage').fadeTo("normal", 1.0);
      bol_focused['MAN'] = false;
      bol_focused['WOMAN'] = false;
   });*/
});

/**
 * Collage image click
 */
function goto_man(int_id) {
   alert('todo');
}

/**
 * Collage image click
 */
function goto_woman(int_id) {
   alert('todo');
}

