
RessourcesTextes.add([["projet.rech_real","Find a production"],["all.m_recherche_avancee","ADVANCED SEARCH"]]);

function search(item){
var url= Langue.getId()== 2 ?"/en/search/" :"/fr/recherche/" 
window.location.href= url+ item;}
var timeout;
$j(document).ready(function(){
$j('.droite .images a').colorbox({photo:true,preloading:true});
$j('#search-prod').focusin(function(){
$j(this).css('border-color','#000' );
if($j(this).val()== _TR("pvp.rechercher_prod","Rechercher une production" ) || $j(this).val()=='Search' ){
$j(this).val('');}}).focusout(function(){
$j(this).css('border-color','#000' );
if($j(this).val()=='' ){
$j(this).val(_TR("pvp.rechercher_prod","Rechercher une production" ));}}).autocomplete("/plugin.php?plugin=production&action=autoComplete",{
autoFill : true}).result(function(event, data, formatted){
if(data){
window.location.href= data[1];
clearTimeout(timeout);}}).keydown(function(e){
if(e.keyCode=='13' ){
timeout= setTimeout(function(){
search($j('#search-prod').val());}, 100)}});});
