/*
++++++++++++++++++++++++++++++++++++++++++++++++++++++++
script.js
Notes regarding usage: 
Dependencies: jquery
++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Purpose: Color Pulse Animation 
Created: Wed Dec 30 20:48:41 CST 2009
Author: Larry Ball 
Modified: 
Comments: 
--------------------------------------------------------
*/   


$(document).ready(function(){ 
	
	/*lightbox code*/
	$('a[rel=lightbox]').lightBox({							// Select all links that contains lightbox in the attribute rel
		overlayBgColor: '#000C85',
		overlayOpacity: '0.8'   
	});

	$('#pulse').pulse({opacity: [1,0] }, 2500, 9999); 
	
});