$(document).ready(function(){
	/* This code is executed after the DOM has been completely loaded */
	
	// Demo
	
	$('#pcb').hover(function(){
		$(this).stop().animate({'left':-20},'slow');
	},function(){
		$(this).stop().animate({'left':-410},'slow');
	});
	$('#pcbt').hover(function(){
		$(this).stop().animate({'left':-20},'slow');
	},function(){
		$(this).stop().animate({'left':-410},'slow');
	});
	
	setTimeout(function(){$('#pcb').animate({'left':-410},'slow');},2000);
	setTimeout(function(){$('#pcbt').animate({'left':-410},'slow');},2000);
});

