$(document).ready(function(){
	$('.location').fancyZoom({scaleImg: false, closeOnClick: false, googlemap: true});
		
	$('form .clean').bind('focus', function() { if ($(this).val() == $(this).attr('title')) $(this).val(''); });
	$('form .clean').bind('blur', function() { if ($(this).val().length == 0) $(this).val($(this).attr('title')); });
			
	// galeria de imagens
	$('.galleryImages a').click(function(){
		$('a', $(this).parent()).removeClass('selected');
		$(this).addClass('selected');
		//$('.mainImage img').attr('src', '../' + $(this).attr('href'));
		$('.mainImage').css('background', 'url(' + $(this).attr('href') + ') no-repeat center center');
		return false;
	});
});