/*
 * Word-of-Mouse JS library
 * 
 * Copyright (c) 2011 Yingling Bros.
 *
 * Version: 1.0.1 (01/08/2011)
 * Requires: jQuery v1.4+
 */
function out(){if($("#eyes").length!=0){$("#eyes").removeClass().addClass("blink");}}
function over(element){if($("#eyes").length!=0){var id=element.id;$("#eyes").removeClass().addClass("look-"+id);}}
function down(element){if($("#eyes").length!=0){var id=element.id;$("#eyes").removeClass().addClass("wide-"+id);}}
$(document).ready(function(){$("#web-design").mouseover(function(){over(this);}).mouseout(function(){out();}).mousedown(function(){down(this);});$("#portfolio").mouseover(function(){over(this);}).mouseout(function(){out();}).mousedown(function(){down(this);});$("#about-us").mouseover(function(){over(this);}).mouseout(function(){out();}).mousedown(function(){down(this);});$("#contact-us").mouseover(function(){over(this);}).mouseout(function(){out();}).mousedown(function(){down(this);});if($("#eyes").length!=0){$("#eyes").addClass("blink");$("#eyes").mouseover(function(){$("#eyes").removeClass().addClass("word");}).mouseout(function(){out();}).click(function(){document.location="contact-us.php";});}});
