<!--
function showHide(elementid){
if (document.getElementById(elementid).style.display == 'none'){
document.getElementById(elementid).style.display = '';
} else {
document.getElementById(elementid).style.display = 'none';
}
}
//-->



$(function() {
    // run the code in the markup!
    $('#s5').cycle({ 
    fx:     'fade', 
    speed:  'fast', 
    timeout: 0, 
    next:   '#button2,#button1',  
});



});
$(function() {
    // run the code in the markup!
    $('#button1').mousedown(function() {

$(this).css("color", "#fff").css("background", "#9DCD0E");
$('#button2').css("color", "#000").css("background", "#dedede");

});



});
$(function() {
    // run the code in the markup!
    $('#button2').mousedown(function() {

$(this).css("color", "#fff").css("background", "#9DCD0E");
$('#button1').css("color", "#000").css("background", "#dedede");

});



});
