Cufon.replace('h1');
$(document).ready(function() {
	$('input[type=text]').focus(function(){ 
		if($(this).val() == $(this).attr('defaultValue'))
		{
			$(this).val('');
			$(this).css('color', '#000');
		}
		});

		$('input[type=text]').blur(function(){
			if($(this).val() == '')
		{
			$(this).val($(this).attr('defaultValue'));
			$(this).css('color', '#ccc');
		} 
		});
		
		$('a.fancybox').fancybox({
			'zoomSpeedIn': 200, 'zoomOpacity':true, 'zoomSpeedOut': 200, 'overlayShow': false, 'padding' : 0	
		});
		

		

});