// Set arrays
var featTitle     = new Array();
var featPrice     = new Array();
var featID        = new Array();
var featImage     = new Array();

featTitle[0]  = '';
featPrice[0]     = '';
featID[0]        = '';
featImage[0]     = '';

featTitle[1]  = '';
featPrice[1]     = '';
featID[1]        = '';
featImage[1]     = '';

featTitle[2]  = '';
featPrice[2]     = '';
featID[2]        = '';
featImage[2]     = '';

function propoweek_price(num)
{
    document.write(featPrice[num]);
}

function propoweek_title(num)
{
    document.write(featTitle[num]);
}

function goto_propoweek(num)
{
    document.location.href = '/' + featID[num];
}
