$(document).ready(function(){
  $('.modal').openDOMWindow({ 
  eventType:'click', 
  loader:0,
  windowSource:'iframe'
  });
  
  $('.cancel-modal').click(function(){
    self.parent.$.closeDOMWindow();
    return false
  })
  
  $('h2.tab a').click(function(e){
    $(this).parents('h2.tab').siblings('h2.tab').removeClass('selected').end().addClass('selected')
    $('ul.horizontal_gallery').hide()
    $("ul[data-gallery=" + $(this).attr('data-gallery') + "]").show()
    return false
  })

  $('h2.tab a').click(function(e){
    $(this).parents('h2.tab').siblings('h2.tab').removeClass('selected').end().addClass('selected')
    $('ul.horizontal_gallery').hide()
    $("ul[data-gallery=" + $(this).attr('data-gallery') + "]").show()
    return false
  })
  
  var widths = 0

  $('#cynosure').find('img').each(function(){
    widths = widths + $(this).attr('width')
    var width = $(this).attr('width')
    if(widths > 900)
    {
      $('#cynosure').find('li').animate({left: -(widths - 900)}, 3000)
    }
  })
});