$(document).ready(function(){

	// Меню hover's
	$('#mainmenu img').mouseenter(function(){
		togleImages($(this));
	});
	$('#mainmenu img').mouseleave(function(){
		togleImages($(this));
	});
	function togleImages(el) {
		var newImg = el.attr('title');
		var lastImg = el.attr('src');
		el.attr('src', newImg);
		el.attr('title', lastImg);
	};

    // Toggle text username & password
	$('input.username')
		.attr('value', 'E-mail')
		.focus(function(){
			if ($(this).attr('value')=='E-mail') {
	    		$(this).attr('value', '');
			}
		})
		.focusout(function(){
			if ($(this).attr('value')=='') {
            	$(this).attr('value', 'E-mail');
			}
		});
	$('input.password')
	    .attr('value', 'Пароль')
		.focus(function(){
			if ($(this).attr('value')=='Пароль') {
	    		$(this).attr('value', '');
			}
		})
		.focusout(function(){
			if ($(this).attr('value')=='') {
            	$(this).attr('value', 'Пароль');
			}
		});

});


