jQuery(function () {
    jQuery("#designerTab").click(function () {
        if (jQuery(this).attr('class') != 'DesignerSelected') {
            jQuery("#projectTab").removeAttr('class').attr('class', 'ProjectsUp-DesignerSelected');
            jQuery("#companyTab").removeAttr('class').attr('class', 'CompanyUp-DesignerSelected');
            jQuery(this).removeAttr('class').attr('class', 'DesignerSelected');
            jQuery(".DesignerPane").show(500);
            jQuery(".ProjectsPane").hide(500);
            jQuery(".CompaniesPane").hide(500);
        }
    });
    jQuery("#projectTab").click(function () {
        if (jQuery(this).attr('class') != 'ProjectSelected') {
            jQuery("#designerTab").removeAttr('class').attr('class', 'DesignerUp-ProjectSelected');
            jQuery("#companyTab").removeAttr('class').attr('class', 'CompanyUp-ProjectSelected');
            jQuery(this).removeAttr('class').attr('class', 'ProjectSelected');
            jQuery(".DesignerPane").hide(500);
            jQuery(".ProjectsPane").show(500);
            jQuery(".CompaniesPane").hide(500);
        }
    });
    jQuery("#companyTab").click(function () {
        if (jQuery(this).attr('class') != 'CompanySelected') {
            jQuery("#designerTab").removeAttr('class').attr('class', 'DesignerUp-CompanySelected');
            jQuery("#projectTab").removeAttr('class').attr('class', 'ProjectUp-CompanySelected');
            jQuery(this).removeAttr('class').attr('class', 'CompanySelected');
            jQuery(".DesignerPane").hide(500);
            jQuery(".ProjectsPane").hide(500);
            jQuery(".CompaniesPane").show(500);
        }
    });

    //=====Menu Scripts===================================================================
    jQuery("#tblIAMenu td").hover(
		function () {
		    jQuery(this).find("div").removeAttr('class').attr('class', 'MenuImgHolder-hover');
		    var CssName = 'MenuTD-hover'
		    if (jQuery(this).attr('id') != '') { CssName = 'MenuTD-LastItem-hover' }
		    jQuery(this).removeAttr('class').attr('class', CssName);
		}, function () {
		    jQuery(this).find("div").removeAttr('class').attr('class', 'MenuImgHolder');
		    var CssName = 'MenuTD-up'
		    if (jQuery(this).attr('id') != '') { CssName = 'MenuTD-LastItem-up' }
		    jQuery(this).removeAttr('class').attr('class', CssName);
		});

    jQuery("#tblIAFooterMenu td").hover(
		function () {
		    jQuery(this).find("div").removeAttr('class').attr('class', 'FooterMenuImgHolder-hover');
		    var CssName = 'FooterMenuTD-hover'
		    if (jQuery(this).attr('id') != '') { CssName = 'FooterMenuTD-LastItem-hover' }
		    jQuery(this).removeAttr('class').attr('class', CssName);
		}, function () {
		    jQuery(this).find("div").removeAttr('class').attr('class', 'FooterMenuImgHolder');
		    var CssName = 'FooterMenuTD-up'
		    if (jQuery(this).attr('id') != '') { CssName = 'FooterMenuTD-LastItem-up' }
		    jQuery(this).removeAttr('class').attr('class', CssName);
		});
});

