// JavaScript Document

jQuery(function() {
	jQuery("#loginwithajaxwidget-3 h3").toggle(function() {
		jQuery("#LoginWithAjax").show();
		jQuery("#LoginWithAjax_Title").css("backgroundColor", "#8b8577").css("color", "#ffffff");
		
	}, function() {
		jQuery("#LoginWithAjax").hide();
		jQuery("#LoginWithAjax_Title").css("backgroundColor", "transparent").css("color", "#625F53");
	});
	
});
