$(document).ready(function(){

   $("#openForm").click(function(){							   
	 $("#contactForm").slideDown(900);
     return false; 
   })
   setTimeout(function(){ $(".success").fadeOut(500);}, 3000);

   
   
   
	$('#scrollWindow').serialScroll({
		items:'li',
		prev:'#scroller a.prev',
		next:'#scroller a.next',
		step:5,
		offset:-0, //when scrolling to photo, stop 230 before reaching it (from the left)
		start:0, //as we are centering it, start at the 2nd
		duration:800,
		force:true,
		stop:false,
		lock:false,
		cycle:false, //don't pull back once you reach the end
		//easing:'easeOutBounce', //use this easing equation for a funny effect
		jump: false //click on the images to scroll to them
	});


   /*********end scroller***********/
   
   
 });
