// JavaScript Document
$(document).ready(function() {

	var arrP_sel = ["images/menu_p01_sel.png", "images/menu_p02_sel.png", "images/menu_p03_sel.png", "images/menu_p04_sel.png", "images/menu_p05_sel.png", "images/menu_p06_sel.png", "images/menu_p07_sel.png", "images/menu_p08_sel.png", "images/menu_p09_sel.png"];
	
	var arrP_un = ["images/menu_p01_un.png", "images/menu_p02_un.png", "images/menu_p03_un.png", "images/menu_p04_un.png", "images/menu_p05_un.png", "images/menu_p06_un.png", "images/menu_p07_un.png", "images/menu_p08_un.png", "images/menu_p09_un.png"];
	
	var arrP_page = ["livewell.html","emote.html","whereru.html","burncal.html","ce2008.html","growrescources.html","symphonyspring.html","pausebub.html","andmore.html"];

	$("#portfolio_menu").hide();

	$("#otherwork img, #otherwork_more img").hover(
		function() {
			$(this).attr( "src", "images/otherwork_sel.gif" );},
		function() {
			$(this).attr( "src", "images/otherwork.gif" );}
	); 
		
	var i = true;
	$("#otherwork, #otherwork_more").click(
		function() {
			if(i) {
				$("#portfolio_menu").show();
				i = false;
			}
			else {
				$("#portfolio_menu").hide();
/*				$("#work").fadeTo(100,1);
*/				i = true;
			}
	});
		
	$("#portfolio_menu a, #portfolio a").each(
		function(i) {
			$(this).attr("href", arrP_page[i]);
		}
	);
	
	$("#portfolio_menu img, #portfolio img").each(
		function(i) {
			var p_id = "p0" + (i + 1).toString();
			$(this).attr("id", p_id);
			$(this).attr("src", arrP_un[i]);
		}
	);
	
	$("#portfolio_menu img, #portfolio img").hover(
		function() {
			var pIndex = $(this).attr("id").toString().charAt(2)-1; 
			$(this).attr( "src", arrP_sel[pIndex] ); 
		}, 
		function() {
			var pIndex = $(this).attr("id").toString().charAt(2)-1; 
			$(this).attr( "src", arrP_un[pIndex] ); }
	);
	
/*	$("#hc img").hover(
		function() {
			$(this).attr( "src", "images/hc_rollover.gif" );},
		function() {
			$(this).attr( "src", "images/hc.gif" );}
	);*/ 

});