$(document).ready(function() {
    $("#master_container div[id*=topId]:first").css("float", "right");
    $("#home_content_platform_container div[id*=topId]").css("float", "left").css("z-index", "1");
    $(".indentmenu ul li a").filter("a[onclick*=SimplePopwin]").each(function(index) {
        $(this).css("float", "left");
    });
    $(".servicemenu ul li a").filter("a[onclick*=SimplePopwin]").each(function(index) {
        $(this).css("float", "right");
    });
    $("input[type=text]#q").focus(function() {
        this.select();
    });
    $(".notimpld").click(function() {
        alert("Not Implemented");
        return false;
    });
    $("#modalwindow").colorbox({
        width:"80%",
        height:"80%",
        iframe:true,
        title:function() {
            return $(this).html();
        }
    });
    $(".grandchildlist").toggle();
    $(".childlist").click(function(e) {
        $(this).find(".grandchildlist").animate({
            opacity: "toggle",
            height: "toggle"
        });
    });
});
function submitForm(object) {
    $(object).submit();
}

