$(document).ready(function(){

	$("input.fl_l").val("login");
	$("input.fl_h").val("hasło");
	
	 $("input.fl_l").focus(function(){
		if($("input.fl_l").val() == "login")
			$("input.fl_l").val("");
	 }).focusout(function(){
		if($("input.fl_l").val() == "")
			$("input.fl_l").val("login");
	 });

	 $("input.fl_h").focus(function(){
		if($("input.fl_h").val() == "hasło")
			$("input.fl_h").val("");
	 }).focusout(function(){
		if($("input.fl_h").val() == "")
			$("input.fl_h").val("hasło");
	 });
	 
		$(".b1").bind("mouseover", function() {
			$(this).css("cursor","pointer");
			//$(this).css("backgroundColor","#e9e9e9");
		}).bind("mouseout", function() {
			$(this).css("cursor","default");
			//$(this).css("backgroundColor","transparent");
		}).bind("click", function() {
			window.location.href="/" + $(this).attr('rel') + "";
		});

		$(".b2").bind("mouseover", function() {
			$(this).css("cursor","pointer");
			//$(this).css("backgroundColor","#e9e9e9");
		}).bind("mouseout", function() {
			$(this).css("cursor","default");
			//$(this).css("backgroundColor","transparent");
		}).bind("click", function() {
			window.location.href="/" + $(this).attr('rel') + "";
		});
		
});

