$(document).ready(function() {

	// Login box
	$('#signin_username').focus(function () {
		setDefaultTextOnFocus($(this), 'felhasznalonev');
	}).blur(function () {
		setDefaultTextOnBlur($(this), 'felhasznalonev');
	});

	$('#signin_password').focus(function () {
		setDefaultTextOnFocus($(this), 'jelszo');
	}).blur(function () {
		setDefaultTextOnBlur($(this), 'jelszo');
	});
	

	// Album: song history
	$('ol.album li a.show_history').click(function () {
		if ($(this).parent().children('p:hidden').length) {
			$('ol.album li p').hide('fast');
			$(this).parent().children('p').show('fast');
		}
	});
	
});



var setDefaultTextOnFocus = function (el, text) {

	if ($(el).val() == text) {
		$(el).val('');
	}

}

var setDefaultTextOnBlur = function (el, text) {

	if ($(el).val() == '') {
		$(el).val(text);
	}

}

