$(document).ready(function(){
/* EXAMPLE SYNTAX
	 $("a").click(function(){
	   alert("Example");
	 });
	$('#gallery a').lightBox(); // Lightbox script. 
*/
	$('.lightbox').lightBox(); // Lightbox script. 
	$(".galleryThumb").hover(function() {
		$(this).animate({backgroundColor:"#DAE0D5"},200);
	},function() {
		$(this).animate({backgroundColor:"#f6ffef"},100);
	});
	$("#startConvo").click(function () {
		href = this.href;
		window.open(href,'','toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=311,height=349');
		return false;
	})
	
});