$(function() {
	if($('body').hasClass('home')) {
		$('#content .r2').click(function(e) {
			document.location.href = 'servicii.php';
		})
		.mouseover(function(e) {
			$(this).css('cursor', 'pointer');
		});
	}
	else if($('body').hasClass('contact')) {
		var dv = [];
		$('#contact input.text, #contact textarea').each(function(i, el) {
			dv[this.id] = this.value;
			$(this).focus(function(e) {
				if(this.value == dv[this.id]) {
					this.value = '';
				}
			}).blur(function(e) {
				if(this.value.length < 1) {
					this.value = dv[this.id];
				}
			});
		});
		$('#submitForm').hide();
		$('#contact').submit(function (e) {
			$('#contact input.text, #contact textarea').each(function(i, el) {
				if(this.value == dv[this.id]) {
					this.value = '';
				}
			});
		});
		$('#contact a.submit').removeClass('hidden').click(function(e) {
			$('#contact').submit();
			return false;
		});
	}
});