/**** Add application wide javascripts below this point  ******/
$(document).ready(function(){
  
  //Galleries. Homepage and /gallery.
  $("a.zoom-image").fancybox();
  
  //Section gallery
  // $("#gallery-thumb").PikaChoose({
  //     show_captions: false,
  //     slide_enabled: false, 
  //     auto_play: true, 
  //     show_prev_next:false, 
  //     thumb_width: 50, 
  //     thumb_height: 23
  //   });
  
  $('#page-slideshow').cycle({
  	fx: 'fade',  // choose your transition type, ex: fade, scrollUp, shuffle, etc...
  	delay: 2000,
  	cleartype: 1
  });
  
  $("#corporate_details").hide();
  $(".check_box_field").change(function() {
    if($(this).attr('value') == "7") {
      $("#corporate_details").toggle('slow');
    }
  });
});

//PNG Fix
$(document).ready(function(){ 
	$(document).pngFix(); 

// External URL links with 'external' rel
$('A[rel="external"]').click(function(){
  window.open($(this).attr('href'));
  return false;
});
}); 