// Initialize jQuery

$(document).ready(function(){
	
	// coming soon
	// $(".comingsoon").click( function() {
	// 		jAlert('This page is being added. Please use the contact form on this page in the mean time, or give us a call at (509)-737-8700. Thank you!', 'Coming Soon');
	// 		return(false);
	// 	});
	
	// ajax form
	$('.error').hide();
	$('#success').hide();
	$('#sideform').ajaxForm(function() { 
		$('#sideform').remove();
		$('#success').fadeIn();
    });

	// SWAP
	$('#descriptions div').hide();
	$('#descriptions div#technology').show();
	$('#services li a').click(function(){
		$('#descriptions div').hide();
		$($(this).attr('href')).fadeIn();
		$('#services li a').removeClass("active");
		$(this).addClass("active");
		return false;
	});
	
	// LIGHTBOX
	$('#gallery a').lightBox({
		overlayBgColor: '#000',
		overlayOpacity: 0.6,
		imageLoading: 'img/extras/lightbox/loading.gif',
		imageBtnClose: 'img/extras/lightbox/close.gif',
		imageBtnPrev: 'img/extras/lightbox/prev.gif',
		imageBtnNext: 'img/extras/lightbox/next.gif',
		imageBlank: 'img/extras/lightbox/blank.gif',
		containerResizeSpeed: 350
	});
	
	

});

// SIFR

$(function () {
	
	// define the path to find fonts
	$.sifr({path:'sifr'});
	
	// h1
	$('h1').sifr({
		font:'gotham-book',
		color:'#222A52',
		offsetLeft:0
	});
	
	$('h2').sifr({
		font:'gotham-medium',
		color:'#222A52',
		offsetLeft:0
	});
	
	$('#dental #services .subnav h3').sifr({
		font:'gotham-medium',
		color:'#222A52',
		offsetLeft:0
	});
	
});

// Flowplayer

// flowplayer("player", "video/flowplayer-3.1.0.swf");
