// JavaScript Document
$(document).ready(function(){
$('#invite').lightBox();
//animated logo on the home page
$('#logo').hover(function(){
$(this).stop().animate({width:'300px',left:'500px'});


},function(){

$(this).stop().animate({width:'175px', left: '550px'});

});						 
});
