// JavaScript Document

$(document).ready(function(){
	$("a[rel^='prettyPhoto']").prettyPhoto();
	
	$('#query').focus(function(){
		if($(this).val() == 'Búsqueda...') $(this).val('');
	})
	
	$('#query').blur(function(){
		if($(this).val() == '') $(this).val('Búsqueda...');
	})
	
});

