// JavaScript Document

$(function(){
	
/*$('a#facebook').mouseenter(function(){
	$(this)
	.stop()
    .animate({ width: '150'},200)
  });

$('a#facebook').mouseleave(function(){
	$(this)
	.stop()
	.animate({ width: '130'},200)
  });*/
  
 
  
  $('ul#nav li a')
	.mouseenter(function(){
		$(this).css({position: "relative", height: '50'}).stop(true).animate({paddingTop : 13, height: 60}, 250);
	})
	.mouseleave(function(){
		$(this).css({position: "relative"}).stop(true).animate({paddingTop : 26}, 350).animate({paddingTop : 23}, 250);
	})
	
 $(function() {
        $('#gallery a').lightBox();
    });
   
 });
 


 
