// JavaScript Document
var mousex = 0;
var mousey = 0;
var tomove = false;

var cont_home_w = 60;
var page_w = 860;
var op_val = 0.05;
var anim_time = 0.7;
var easetype = 'easeInOutCubic';

var site_min_w = 960;
var zero_x = 0;

var curr_id = 'home';

var about_txt_h = 0;

//var navi = new Array(['txt':'homepage','id':'home'],"portfolio","t-shirts","fun","about","contact");
var navi = new Array();
navi[0] = {'id':'home','txt':'homepage'};
navi[1] = {'id':'portf','txt':'portfolio'};
navi[2] = {'id':'tees','txt':'t-shirts'};
navi[3] = {'id':'fun','txt':'fun'};
navi[4] = {'id':'about','txt':'about'};
navi[5] = {'id':'contact','txt':'contact'};
var index_next = 1;
var index_prev = 5;
var index_curr = 0;



