﻿ $(document).ready(function(){
  
$("#directory_brandname").focus(function() {
	if( this.value == "Keyword" ) {
		this.value = "";
	}
}).blur(function() {
	if( !this.value.length ) {
		this.value = "Keyword";
	}
});

  });
  
  /*
  * Check if enter key is clicked on company or brand keyword 
  * and fire search if yes
  */
  $(document).ready(function(){
  
    var $btnBran = $('#btnSearchBrand');
    
    /*
    *   Case when brand
    */
    $("#directory_brandname").keypress(function(e){
        if (e.which == 13) {
            $btnBran[0].click();
            return false; 
        }
    });
    
});



