$(function(){function GetInnerSize(){var x,y;if(self.innerHeight)
{x=self.innerWidth;y=self.innerHeight;}
else if(document.documentElement&&document.documentElement.clientHeight)
{x=document.documentElement.clientWidth;y=document.documentElement.clientHeight;}
else if(document.body)
{x=document.body.clientWidth;y=document.body.clientHeight;}
return[x,y];}
function ResizeToInner(w,h,x,y){if(x==undefined)x=window.screenLeft||window.screenX;if(y==undefined)y=window.screenTop||window.screenY;window.moveTo(0,0);window.resizeTo(screen.availWidth,screen.availHeight);var inner=GetInnerSize();var ox=screen.availWidth-inner[0];var oy=screen.availHeight-inner[1];window.resizeTo(w+ox,h+oy);window.moveTo(x,y);}
ResizeToInner(540,720);$('#work_wrapper').jScrollPane();jQuery('li.title:odd').css({backgroundColor:'black'});$('li.title').mouseover(function(){$(this).addClass('title_over');}).mouseout(function(){$(this).removeClass('title_over');$(this).addClass('title');})
$("li.title").click(function(){window.open($(this).find("a").attr("href"));return false;});})
