text = new Array();
img = new Array();
text[0] = "#ff358b";
text[1] = "#01b0f0";
text[2] = "#aeee00";
img[0] = "/images/common/photo_bg_pink.gif";
img[1] = "/images/common/photo_bg_blue.gif";
img[2] = "/images/common/photo_bg_green.gif";

n = Math.floor(Math.random()*img.length);

$(function(){
    $j("h1 a,div#menu a").hover(
    function(){
        $j(this).css("color",text[n])
    },
    function(){
        $j(this).css("color","#666666")
    }
    );
});

$(document).ready( function () {
    $j("ul#pager li").css("background-color",text[n])
	$j("ul#pager li").css("color","#ffffff")
	$j("ul#pager li a").css("background-color","#ffffff")
});

$(function(){
    $j("ul#pager li a").hover(
    function(){
        $j(this).css("background-color",text[n])
		$j(this).css("color","#ffffff")
    },
    function(){
        $j(this).css("background-color","#ffffff")
		$j(this).css("color","#666666")
    }
    );
});

$(document).ready( function () {
    $j("#main ul.thumbnail li").css("background-image","url(" + img[n] + ")")
});

$(function(){
    $j("#main ul.thumbnail li").hover(
    function(){
        $j(this).css("background-position","right")
    },
    function(){
        $j(this).css("background-position","left")
    }
    );
});
