function FilterOnFirst(x){
 document.getElementById(x).style.background = '#69322F';
 document.getElementById(x).style.color = '#FFFFFF';
 document.getElementById(x).style.backgroundImage = 'url(img/arrow_first_on.gif)';
 document.getElementById(x).style.backgroundRepeat = 'no-repeat';
}

function FilterOnPrev(x){
 document.getElementById(x).style.background = '#69322F';
 document.getElementById(x).style.color = '#FFFFFF';
 document.getElementById(x).style.backgroundImage = 'url(img/arrow_prev_on.gif)';
 document.getElementById(x).style.backgroundRepeat = 'no-repeat';
}

function FilterOnNext(x){
 document.getElementById(x).style.background = '#69322F';
 document.getElementById(x).style.color = '#FFFFFF';
 document.getElementById(x).style.backgroundImage = 'url(img/arrow_next_on.gif)';
 document.getElementById(x).style.backgroundRepeat = 'no-repeat';
 document.getElementById(x).style.backgroundPosition = 'right';
}

function FilterOnLast(x){
 document.getElementById(x).style.background = '#69322F';
 document.getElementById(x).style.color = '#FFFFFF';
 document.getElementById(x).style.backgroundImage = 'url(img/arrow_last_on.gif)';
 document.getElementById(x).style.backgroundRepeat = 'no-repeat';
 document.getElementById(x).style.backgroundPosition = 'right';
}

function FilterOffFirst(x){
 document.getElementById(x).style.background = '#FFCC00';
 document.getElementById(x).style.color = '#000000';
 document.getElementById(x).style.backgroundImage = 'url(img/arrow_first.gif)';
 document.getElementById(x).style.backgroundRepeat = 'no-repeat';
}

function FilterOffPrev(x){
 document.getElementById(x).style.background = '#FFCC00';
 document.getElementById(x).style.color = '#000000';
 document.getElementById(x).style.backgroundImage = 'url(img/arrow_prev.gif)';
 document.getElementById(x).style.backgroundRepeat = 'no-repeat';
}

function FilterOffNext(x){
 document.getElementById(x).style.background = '#FFCC00';
 document.getElementById(x).style.color = '#000000';
 document.getElementById(x).style.backgroundImage = 'url(img/arrow_next.gif)';
 document.getElementById(x).style.backgroundRepeat = 'no-repeat';
 document.getElementById(x).style.backgroundPosition = 'right';
}

function FilterOffLast(x){
 document.getElementById(x).style.background = '#FFCC00';
 document.getElementById(x).style.color = '#000000';
 document.getElementById(x).style.backgroundImage = 'url(img/arrow_last.gif)';
 document.getElementById(x).style.backgroundRepeat = 'no-repeat';
 document.getElementById(x).style.backgroundPosition = 'right';
}

function CartButtonOn(x){
 document.getElementById(x).style.background = '#69322F';
 document.getElementById(x).style.color = '#FFFFFF';
 document.getElementById(x).style.backgroundImage = 'url(img/cart_add.png)';
 document.getElementById(x).style.backgroundRepeat = 'no-repeat';
}

function CartButtonOff(x){
 document.getElementById(x).style.background = '#FFCC00';
 document.getElementById(x).style.color = '#000000';
 document.getElementById(x).style.backgroundImage = 'url(img/cart_add.png)';
 document.getElementById(x).style.backgroundRepeat = 'no-repeat';
}

function RemoveButtonOn(x){
 document.getElementById(x).style.background = '#69322F';
 document.getElementById(x).style.color = '#FFFFFF';
 document.getElementById(x).style.backgroundImage = 'url(img/cart_remove.png)';
 document.getElementById(x).style.backgroundRepeat = 'no-repeat';
}

function RemoveButtonOff(x){
 document.getElementById(x).style.background = '#FFCC00';
 document.getElementById(x).style.color = '#000000';
 document.getElementById(x).style.backgroundImage = 'url(img/cart_remove.png)';
 document.getElementById(x).style.backgroundRepeat = 'no-repeat';
}

function CustomizeButtonOn(x){
 document.getElementById(x).style.background = '#69322F';
 document.getElementById(x).style.color = '#FFFFFF';
 document.getElementById(x).style.backgroundImage = 'url(img/customize.png)';
 document.getElementById(x).style.backgroundRepeat = 'no-repeat';
}

function CustomizeButtonOff(x){
 document.getElementById(x).style.background = '#FFCC00';
 document.getElementById(x).style.color = '#000000';
 document.getElementById(x).style.backgroundImage = 'url(img/customize.png)';
 document.getElementById(x).style.backgroundRepeat = 'no-repeat';
}

function MaximizeButtonOn(x){
 document.getElementById(x).style.background = '#69322F';
 document.getElementById(x).style.color = '#FFFFFF';
 document.getElementById(x).style.backgroundImage = 'url(img/maximize.png)';
 document.getElementById(x).style.backgroundRepeat = 'no-repeat';
}

function MaximizeButtonOff(x){
 document.getElementById(x).style.background = '#FFCC00';
 document.getElementById(x).style.color = '#000000';
 document.getElementById(x).style.backgroundImage = 'url(img/maximize.png)';
 document.getElementById(x).style.backgroundRepeat = 'no-repeat';
}

function PlusOn(x){
 document.getElementById(x).style.background = '#69322F';
 document.getElementById(x).style.color = '#FFFFFF';
 document.getElementById(x).style.backgroundImage = 'url(img/plus_on.png)';
 document.getElementById(x).style.backgroundRepeat = 'no-repeat';
}

function PlusOff(x){
 document.getElementById(x).style.background = '#FFCC00';
 document.getElementById(x).style.color = '#000000';
 document.getElementById(x).style.backgroundImage = 'url(img/plus.png)';
 document.getElementById(x).style.backgroundRepeat = 'no-repeat';
}

function MinusOn(x){
 document.getElementById(x).style.background = '#69322F';
 document.getElementById(x).style.color = '#FFFFFF';
 document.getElementById(x).style.backgroundImage = 'url(img/minus_on.png)';
 document.getElementById(x).style.backgroundRepeat = 'no-repeat';
}

function MinusOff(x){
 document.getElementById(x).style.background = '#FFCC00';
 document.getElementById(x).style.color = '#000000';
 document.getElementById(x).style.backgroundImage = 'url(img/minus.png)';
 document.getElementById(x).style.backgroundRepeat = 'no-repeat';
}