$(document).ready(function() {

	$("#slickbox").hide();
	$("#contact-show").click(function() {
		$("#slickbox").show(300);
		$("#contact-show").hide();
		$("#close").show();
		return false;
	});
	
	$("#close").click(function() {
		$("#slickbox").hide(300);
		$("#contact-show").show();
		$("#close").hide();
		return false;
	});

	$('#slideshow').bxSlider({
	pager: true,
	auto: true,
	pause: 5000,
	buildPager: function(slideIndex){
	  switch (slideIndex){
		case 0:
		  return '<div class="pager"><a href="" class="no-underline" width="225px">&nbsp;</a></div>';
		case 1:
		  return '<div class="pager"><a href="" class="no-underline" width="225px">&nbsp;</a></div>';
		case 2:
		  return '<div class="pager"><a href="" class="no-underline" width="225px">&nbsp;</a></div>';
		case 3:
		  return '<div class="pager pager-last"><a href="" class="no-underline" width="225px">&nbsp;</a></div>';
	  }
	}
	});

	$("#contactform").validate();
	$("#confirmation").fadeOut(5000);

});
