
    /*
     * Author:John Wiltshire
     * Company: Bruce Betting
     * Date: `5-11-2010
     * Description: Library of JQuery Objects
     *
     * Change Log;
     * - 20101105.1002 - Added modal windows for use in the about us section
     */


 $(document).ready(function(){
	$("a#show-panel").click(function(){
		$("#lightbox, #lightbox-panel").fadeIn(300);
	})
	
	$("a#close-panel").click(function(){
		$("#lightbox, #lightbox-panel").fadeOut(300);
	})
 })
