﻿// functions for SocialTwist/Add to Any thing on Job Desc pages


// on mouse over, check if the js loads
function addtoanyOver(i){
    if(typeof(STTAF) == 'undefined'){ // if the function doesn't exist (their js doesn't load), don't show button

    }
    else{
        STTAFFUNC.showHoverMap(i, '2009061619369', window.location, document.title);
        //i.style.border = 'solid';
    }
}

//on mouse out, check if js loads
function addtoanyOut(i){
    if(typeof(STTAF) == 'undefined'){ // if the function doesn't exist (their js doesn't load), don't show button
	   
    }
    else{
        STTAFFUNC.hideHoverMap(i);
    }
}

// on mouse click
function addtoanyClick(i){
    STTAFFUNC.cw(i, {id:'2009061619369', link: window.location, title: document.title });
}
