swfobject.embedSWF(baseUrl+"flash/player.swf", "video-empresa", "320", "225", "9.0.0", baseUrl+"flash/expressInstall.swf");
swfobject.embedSWF(baseUrl+"flash/home/banner-principal.swf", "featured-content-wrap", "960", "340", "9.0.0", baseUrl+"flash/expressInstall.swf");

swfobject.embedSWF(
  baseUrl+"flash/home/representante.swf"
  ,"representante"
  ,"165", "250", "9.0.0"
  ,baseUrl+"flash/expressInstall.swf"
  ,{navigateTo: baseUrl+'representante'});
  
swfobject.embedSWF(
  baseUrl+"flash/home/orcamento.swf"
  ,"orcamento"
  ,"165", "250", "9.0.0"
  ,baseUrl+"flash/expressInstall.swf"
  ,{navigateTo: baseUrl+'orcamento'});
  
swfobject.embedSWF(
  baseUrl+"flash/home/servicos.swf"
  ,"indique-servicos"
  ,"165", "250", "9.0.0"
  ,baseUrl+"flash/expressInstall.swf"
  ,{navigateTo: baseUrl+'indique-nossos-servicos'});
  
swfobject.embedSWF(
  baseUrl+"flash/home/video.swf"
  ,"assista-ao-video"
  ,"165", "250", "9.0.0"
  ,baseUrl+"flash/expressInstall.swf"
  ,{navigateTo: baseUrl+'a-empresa'});

$(document).ready(function(){
  $('a[rel=external]').attr('target', '_blank');
  
  
  /* Hacks to menu work correctly on IE */
  $('#main-menu ul li a').each(function(index){
    $(this).before('<span class="left"></span>').after('<span class="right"></span>');
  });
  
  $('#main-menu ul li span').click(function(e){
    window.location = $(this).parent().children('a').attr('href');
  });
  /* -- Hacks to menu work correctly on IE */
  
  $('#search-field').placeHolder('Buscar');
  
  $("div.gallery-links-list a").fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
    'easingIn'      : 'easeOutBack',
		'easingOut'     : 'easeInBack',
    'titleShow'     : false,
    'hideOnContentClick': true
	});
  
  $("#CustomerUsername").focus();
});

jQuery.fn.extend({ placeHolder: function(value){
  jQuery(this).focus(function(){
    if(jQuery(this).val() == value)
      jQuery(this).val('');
  });
  jQuery(this).blur(function(){
    if(jQuery(this).val() == '')
      jQuery(this).val(value);
  });
}});
