//  $Id: script.js,v 1.2 2007/08/12 06:14:26 dfurber Exp $
//  Copyright (C)2006 Gorges Web Sites. All Rights Reserved.

//  popup

function popup(query) {
  mywindow = open('instance_popup.php?' + query, 'Edit', 'location=no,status=no,directories=no,menubar=no,scrollbars=yes,resizable=yes,width=600,height=450');
  mywindow.location.href = 'instance_popup.php?' + query;
  mywindow.focus();
  if (mywindow.opener == null)
    mywindow.opener = self;
}

// comments
function preview_comment() {
  var message = $('#message').val();
  if (message.length > 0) {
	  var data = 'name=' + $('#name').val();
	  data += '&email=' + $('#email').val();
	  data += '&web=' + $('#web').val();
	  data += '&message=' + message;
	  $.ajax({ url     : "comment_preview.php",
	           type    : "get",
	           data    : data,
	           success : function(msg){
	                       $('#preview_comment').html(msg);
	                     }
	         });
  } else {
    alert('Please enter a message to preview.');
  }
}


try {
	$.fn.show_spinner = function() {
	  $(this).html('<img src="images/indicator.gif" class="indicator" />');
	    return this;
	}
	
	$.fn.hide_spinner = function() {
	  $(this).html('');
	}
	
	$(document).ready(function(){
	    $("#quicklinks > ul").each(function(){
		    $(this).superfish({
		      menuTag : 'div',
		      menuID  : 'services',
		      menuURL : 'service_menu.html'
		    });
	    });
	    $('#comment_switch').click(function(){
	      $('#comment_form').slideToggle();
	    });
	    $('#distro tbody th a').click(function(){
	      $(this).parents('tr').next('tr.buildings').toggleClass('show');
	      return false;
	    });
        $('div.slideshow').each(function(){$(this).slideshow();});
	  });
} catch(e) {}