/*
		********************************************
		*                                          *
		* Code: http://westrem.sk                  *
		* Date: dd.mm.yyyy                         *
		* Support: support@westrem.sk              *
		*                                          *
		********************************************
*/


/* -------------------------------------------------------------------------------------------------
                                             FUNCTIONS
------------------------------------------------------------------------------------------------- */

function blankLinks() {
	$("a[rel='e'][href]").attr("target", "_blank");
}

function innerLabel(input, label) {
	$(input).focus(function() {
		if ($(this).val() == label) {
			$(this).val("");
		}
	});

	$(input).blur(function() {
		if ($(this).val() == '') {
			$(this).val(label);
		}
	});
}

/*
	$("#login .submit").hover(function() {
		$(this).addClass("submit_hovered");
	},function() {
		$(this).removeClass("submit_hovered");
	});
*/


/* -------------------------------------------------------------------------------------------------
                                           DOCUMENT READY
------------------------------------------------------------------------------------------------- */

$(document).ready(function() {
  blankLinks();
});

