 $(document).ready(function(){
 
        $('#gallery1 a').lightBox();
        $('#gallery2 a').lightBox();
        $('#gallery3 a').lightBox();
        $('#gallery4 a').lightBox();
        $('#gallery5 a').lightBox();
 
 var homewidth = '79px';
 var contactwidth = '192px';
 var aboutwidth = '307px';
 
	$(".btn-about").hover(
	
	 function () {  $(".arrow").stop(); $(".arrow").animate({ width: aboutwidth }, 200 );   }, 
     function () {  $(".arrow").stop(); $(".arrow").animate({ width: homewidth }, 400 ); }
   
   );
   
   	$(".btn-contact").hover(
	
	 function () {  $(".arrow").stop(); $(".arrow").animate({ width: contactwidth }, 200 );   }, 
     function () {  $(".arrow").stop(); $(".arrow").animate({ width: homewidth }, 400 ); }
   
   );
  
	$(".itempic").hover(
 
         function () {		 
    	var id = $(this).attr('title');
		var picid = 'view_'+id; 
		 
        $('#'+picid).fadeIn("fast");
      }, 
      function () {
      	var id = $(this).attr('title');
		var picid = 'view_'+id; 
		
       $('#'+picid).fadeOut("fast");
      }
   
   );
   
 });

