﻿
var mmen_cur;
var mmen_curitem = '';
var mmen_stillshow = 0;
var mmen_curitemt = ''

function mmenover(fx_men) {
    if (mmen_curitemt!='') {
        mmenhide(mmen_curitemt);
    }        
    mmen_curitemt = fx_men;
    clearTimeout(mmen_cur);
    mmen_stillshow = 1;
    mmen_curitem = document.getElementById('mainhov_' + fx_men)    
    mmen_cur = setTimeout('mmenshow(\'' + fx_men + '\') ', 50);
}

function mmenshow(fx_men) {
    if (mmen_stillshow==1) {            
        mmen_curitem.className='sc_men';           
    }        
}

function mmenout(fx_men) {  
    clearTimeout(mmen_cur); 
    mmen_cur = setTimeout('mmenhide(\'' + fx_men + '\') ', 200);       
}

function mmenhide(fx_men) {  
    clearTimeout(mmen_cur);
    if (mmen_curitem!=null) {
        mmen_curitem.className='sc_out';           
    }        
    mmen_stillshow = 0;
}

function mmenhovto() {
    clearTimeout(mmen_cur);
}

function mmenclearcur() {
    mmenout(mmen_curitemt);
}

function atcNow(){

	if ($('#termsCheck').is(':checked')){
		window.location='/site/web/cart/process/index.asp'
	}
	else{
		alert("You must accept the Terms and Conditions before you checkout.");
	}


}