// JavaScript Document
var to = null;
var scrollamount = 5;
var toamount	= 10;
var count 		= 0;
$(document).ready(function(){
	$('.picholder img').live('mouseover',function(){
			$(this).stop();
			$(this).css({borderColor:	'#a4a4a4',zIndex:100});
			$(this).animate({
				top:			-12,
				left:			-20,
				width:			200,
				height:			123
				
			},'fast','swing');
		}
	);
	$('.picholder img').live('mouseout',function(){
			$(this).stop();
			$(this).css({borderColor:	'#000000',zIndex: 50});
			$(this).animate({
				top:			0,
				left:			0,
				width:			160,
				height:			99
			},'fast','swing');				
		}											
	);
	
});

