//交互效果类包
var effect={
ShowHight:function(a,b)
{
    jQuery("#" + a).slideUp(400, function() {
    jQuery("#" + b).slideDown(400);
		});	
	},
ShowForm:function(id)
{
    jQuery("#divMask").show().css("height", jQuery("body").height() + "px");
    jQuery("#FloatForm").fadeIn();
    jQuery("iframe", "#FloatForm").attr("src", "FloatPage/" + id)
	},
CloseForm:function()
{
    jQuery("#FloatForm").fadeOut(400, function() {
    jQuery("#divMask").hide();								 
		 });
	}
}


function rediectForm(url)
{
    jQuery("iframe", "#FloatForm").fadeOut(400, function() {
    jQuery("iframe", "#FloatForm").attr("src", "FloatPage/" + url);
    jQuery("iframe", "#FloatForm").fadeIn();
	 });
}