(function ($) {

$(document).ready(function() {

	$('#mce-EMAIL').focus(function() {
		if ($(this).val() == 'Enter your email') {
			$(this).val('');
		}
	});
	
	$('#mce-EMAIL').blur(function() {
		if ($(this).val() == '') {
			$(this).val('Enter your email');
		}
	});
	
	$('#mce-FNAME').focus(function() {
		if ($(this).val() == 'First name') {
			$(this).val('');
		}
	});
	
	$('#mce-FNAME').blur(function() {
		if ($(this).val() == '') {
			$(this).val('First name');
		}
	});
	
	//hover functionality on the Our Work page
	$('.page-our-work .views-field-field-image .field-content').hover( function() {
		$(this).children('.our-work-overlay').slideDown();
	}, function() {
		$(this).children('.our-work-overlay').slideUp();
	});

});

})(jQuery);

;

