$(function(){
	$("input.home_email").focus(function(){
	   if ($(this).val() == 'your@email.com') {
	       $(this).removeAttr("value");
	       $("input.home_password").css({
                "background-image": "none"
           });
	   };

	});

	$("input.home_password").focus(function(){
       $(this).css({
            "background-image": "none"
        });
	});

	$("input.home_password").change(function(){
       $(this).css({
            "background-image": "none"
        });
	});

	if ($("input.home_password").val() != '') {
	   $("input.home_password").css({
            "background-image": "none"
        });
	}

	$("input.home_login").blur(function(){
	   if ($(this).val() == '') {
	       $(this).attr("value", "your@email.com");
	   };
	});
});
function showSubmenu( index ) {
	submenus = $(".submenu").hide();
	$( "#" + index ).show();
}
function showContactForm() {
	var z7x4z5 = new WufooForm();
	z7x4z5.initialize({'userName':'r0mk1n','formHash':'z7x4z5','autoResize':true,'height':'512'});z7x4z5.display();
}

