$(function()
{
	$('.scroll-pane').jScrollPane({showArrows:true, scrollbarWidth:14});
});

function showPic(whichpic){
    if (document.getElementById){
        document.getElementById('placeholder').src = whichpic.href;
        return false;
    }
    else{
        return true;
    }
}

function showPicDesc(whichpic){
    if (document.getElementById){
        document.getElementById('placeholder').src = whichpic.href;
        if (whichpic.title){
            if (whichpic.id==1 | whichpic.id==2 | whichpic.id==3){
                document.getElementById('desc').childNodes[0].nodeValue = whichpic.title;
                document.getElementById('disclaimer').childNodes[0].nodeValue = '*makeup & hair for images 2 & 3 only';
            }
            else{
                document.getElementById('desc').childNodes[0].nodeValue = whichpic.title;
                document.getElementById('disclaimer').childNodes[0].nodeValue = ' ';
            }
        }
        else{
            document.getElementById('desc').childNodes[0].nodeValue = whichpic.childNodes[0].nodeValue;
        }
        return false;
    }
    else{
        return true;
    }
}
