
$(document).ready(function() {
	$('#q').focus(function() {
		if ($(this).attr('value') == 'Busca' || 
			$(this).attr('value') == 'Search') {
			$(this).attr('value','');
		}
	})
	$('#q').blur(function() {
		if ($(this).attr('value') == '') {
			$(this).attr('value','Busca');
		}
	})
	$('#searchForm').submit(function() {
		if ($('#q').attr('value') == '' || 
			$('#q').attr('value') == 'Busca' ||
			$('#q').attr('value') == 'Search') {
			return false;
		}
	})

	$('.itens .thumbs a').click(function() {
		$(this).parent().prev().attr('src',$(this).attr('href'));
		return false;
	})
})
