﻿$(function() {
	// news updates on home page
    $(".newsupdates input:text").keydown(function(e) {
        if (e.keyCode == 13) // enter key
        {
            $("form").submit(function() {
                return false;
            });
            newform = $("<form action='" + navlead + "investors/EmailAlertConfirm.asp?compid=64426' method='post'></form>");
            $(".newsupdates").append(newform);
            $(".newsupdates fieldset").appendTo(newform);
            newform.submit();
        }
    });
    $(".newsupdates a").click(function() {
        newform = $("<form action='" + navlead + "investors/EmailAlertConfirm.asp?compid=64426' method='post'></form>");
        $(".newsupdates").append(newform);
        $(".newsupdates fieldset").appendTo(newform);
        newform.submit();
    });

    // single image on home page content area
    $("#why-choose .SingleImage1_plcContent2").insertAfter("#why-choose h2");
});
