/* dropdown menu stuff */
sfHover = function() {
	var sfEls = document.getElementById("main-navigation").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);


function CheckSSLRedirect() 
{
    var sslRequired = false;  
    var host = window.location.hostname.toLowerCase();
    var path = window.location.pathname.toLowerCase();
    var search = window.location.search;
    var prot = window.location.protocol;
    
    if(host == "www.purina.com.au" || host == "purinaau.staging.safecom.com.au")
    {
        if(path == "/supercoat/promotionentry.aspx" || path == "/supercoat/promotionstc.aspx")
        {
            sslRequired = true;
        }
    }  
    var currentlySecure = prot == "https:";
    var newURL = "";
    if(currentlySecure != sslRequired)
    {
        if(sslRequired)
        {
            newURL = "https://";
        }
        else
        {
            newURL = "http://";
        }
        newURL = newURL + host + path + search;
        window.location = newURL ;
    }    
}

CheckSSLRedirect(); 

function adjustIFrameSize(iframeHeightNumber) {
	var iframe = document.getElementById( 'ctl00_ContentPlaceHolder1_iFrame' );
	iframe.setAttribute( 'height', iframeHeightNumber );
}
