$(document).ready(function() {	
	var b = function(a, b) {
		a.focus(function() {
			if(this.value == b) {
				this.value = ""
			}
		});
		a.blur(function() {
			if(this.value == "") {
				this.value = b
			}
		})
	};
	b($('input[name="f_name"]'), "First Name");
	b($('input[name="l_name"]'), "Last Name");
	b($('input[name="email"]'), "Email");
	b($('input[name="phone"]'), "Phone");
	b($('textarea[name="message"]'), "Message");
	$("a#play").fancybox({
		'scrolling': false,
		'titleShow': false,
		'centerOnScroll': true,  
		'padding': 15,
		'onStart': function() {
			$("#player").show();
		},
		'onClosed' : function() {
			$("#player").hide();
		}
	});
});
Cufon.replace('ul#h-menu li a, span.title, span.tech-title, span#contact-title, span.c-title, span#clients-title, span#intro-title, span#intro-terms-title', {hover: 'true'});
Cufon.replace('span.s-title', {textShadow: '1px 0 1px #525252'});
