$(document).ready(function(){	
	$('.block-hover').hover(function(){
		$(this).addClass('hover');
	},function(){
		$(this).removeClass('hover');
	});

	$(".block-hover").click(function(){
		window.location=$(this).find("a").attr("href");return false;
	});

	$('.inp-value').click(
		function() {
			if (this.value == this.defaultValue) {
				this.value = '';
			}
		})
	.blur(
		function() {
			if (this.value == '') {
				this.value = this.defaultValue;
			}
		}
	);
});
