$(function() {
  $("form#file").submit(showLoading);
  $(".type").change(type);
  $("#go").click(cod);
  $("#cod").focus(placeHolder)
  $("#cod").blur(placeHolder)
  $('#fullbanner').innerfade({
    speed: 'slow',
    timeout: 4000,
    type: 'sequence',
    containerheight: '423px'
  })
});
/* Functions */
function showLoading() {
  $('.imgLoading').fadeIn('slow');
}
function type() {
  url = $(this).attr("title")+$(this).children('option:selected').val();
  window.location.href=url;
}
function cod() {
  url = $(this).attr("title")+$("#cod").val()
  window.location.href=url;
}
function placeHolder(){
  if($(this).val() == $(this).attr('title')){
    $(this).val('')
  }
  else{
    if($(this).val() == ''){
      $(this).val($(this).attr('title'))
    }
  }
}
