﻿// Add flash video to page
var flashvars = {};
var params = {};
var attributes = {};
swfobject.embedSWF("/assets/flash/home-animation.swf", "flashAnimation", "688", "236", "8.0.0", false, flashvars, params, attributes);

// Add got query form functionality
  
$(document).ready(function() {
  $("#queryForm .textInput").focus(function() {
    $(this).addClass("focussed");
    if (this.value == this.title) { this.value = ''; }
  });
  $("#queryForm .textInput").blur(function() {
    if (this.value == '') {
      this.value = this.title;
      $(this).removeClass("focussed");
    }
  });
});