var product_keyword_initial_value = 'palavra-chave';
$(document).ready(function(){
	/*
	$('#product_keyword').focus(function(){
		if($(this).val() == product_keyword_initial_value){
			$(this).val('');
		}
	});
	$('#product_keyword').blur(function(){
		if($(this).val() == ''){
			$(this).val(product_keyword_initial_value);
		}
	});
	$('#product_category').change(function(){
		$('#product_line option[value=""]').attr("selected","selected");
	});
	$('#products_line').change(function(){
		$('#product_category option[value=""]').attr("selected","selected");
	});
	*/
});

function pathology_search(){
	if($('#product_pathology').val() != ''){
		window.location.href = _PRODUCT_SEARCH_PATHOLOGY_URL + $('#product_pathology').val();
	}	
}

function product_search(){
	if($('#products_search').val() != ''){
		window.location.href = $('#products_search').val();
	}
	/*
	product_keyword  = $('#product_keyword').val();
	if(product_keyword != product_keyword_initial_value){
		product_category = $('#product_category').val();
		product_line 	 = $('#product_line').val();
		var search_url = new Array();
		search_url.push(_PRODUCT_SEARCH_URL);
		if(product_category != ''){
			search_url.push(_PRODUCTS_SEARCH_CATEGORY_SLUG);
			search_url.push(product_category);
			search_url.push('/');
		}
		if(product_line != ''){
			search_url.push(_PRODUCTS_SEARCH_LINE_SLUG);
			search_url.push(product_line);
			search_url.push('/');
		}
		search_url.push(product_keyword);
		window.location.href = search_url.join('');
	} else {
		alert('Digite o termo que deseja buscar.');
		$('#product_keyword').focus();
	}
	*/
}

function product_search(){
	if($('#products_search').val() != ''){
		window.location.href = $('#products_search').val();
	}
	/*
	product_keyword  = $('#product_keyword').val();
	if(product_keyword != product_keyword_initial_value){
		product_category = $('#product_category').val();
		product_line 	 = $('#product_line').val();
		var search_url = new Array();
		search_url.push(_PRODUCT_SEARCH_URL);
		if(product_category != ''){
			search_url.push(_PRODUCTS_SEARCH_CATEGORY_SLUG);
			search_url.push(product_category);
			search_url.push('/');
		}
		if(product_line != ''){
			search_url.push(_PRODUCTS_SEARCH_LINE_SLUG);
			search_url.push(product_line);
			search_url.push('/');
		}
		search_url.push(product_keyword);
		window.location.href = search_url.join('');
	} else {
		alert('Digite o termo que deseja buscar.');
		$('#product_keyword').focus();
	}
	*/
}

function openReferences(id){
	$('#referencias').show();
	$('#referencias-header').hide();
	window.location.hash = 'referencia-' + id;
}
