$(document).ready(function(){
	$("a.zoom").fancybox({ 
		//'padding':20,
		'opacity':true,
		'hideOnContentClick': true, 
		'overlayColor' : '#000', 
		'overlayOpacity': 0.4,
		'overlayShow':true,
		'speedIn':400,
		'speedOut':400,
		'titlePosition': 'outside'
	});
	$("a[rel=fancy_group]").fancybox({
		'transitionIn'	: 'none',
		'transitionOut'	: 'none',
		'titlePosition' : 'outside'
	});
	$('.phone div').textDropShadow();
});

function focusInput(el, txt){
	if(el.value == txt){
		el.value=''
	}
}
function blurInput(el, txt){
	if(el.value == ''){
		el.value=txt;
	}
}

