/*
++++++++++++++++++++++++++++++++++++++++++++++++++++++++
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(){ 
	$("a[rel^='prettyPhoto']").prettyPhoto({
    animationSpeed: 'normal', /* fast/slow/normal/milliseconds, unquoted */
    padding: 40, /* padding for each side of the picture */
    opacity: 0.75, 
    showTitle: true, 
    counter_separator_label: '/', /* The separator for the gallery counter 1 "of" 2 */
    theme: 'light_rounded' /* light_rounded / dark_rounded / light_square / dark_square */
  });   
  
	/*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); 
	
});
