$(document).ready(function(){
	$("#header").click(function(){
		window.location = "index.php";
	});
	
	$("#register_block").click(function(){
		window.location = "register.php";
	});
	
	$("#parents_say_block").click(function(){
		window.location = "press.php";
	});
	
	$("#best_parties_block").click(function(){
		window.location = "parties.php";
	});
	
	$("#community_block").click(function(){
		window.location = "about.php";
	});
	
	$(".coming_soon").click(function(){	
		alert("Coming soon!");
	});
});
