Changing the name & cat on wipes out carousel images & post

Hello all working on this page. http://thebigmeow.us/cs/ it has a carousel. Same one as on this page:
http://thebigmeow.us/engineering/
I just copied and pasted the code. I then went to tweak it.
All i did was change the name & job here from

<div class="span8">
							<?php query_posts[B][COLOR="#FF0000"]('cat=engineering&tag=folger');[/COLOR][/B] the_post(); ?>
							<h4><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h4>
							<p><?php the_excerpt(); ?></p>
							<h5><?php echo get_post_meta($post->ID,'name',true); ?></h5>
							<h6><?php echo get_post_meta($post->ID,'job',true); ?></h6>
							</div>

to

<div id="eng1stSlide" class="span12">	
							<div class="span8">
							[B][COLOR="#FF0000"]<?php query_posts('cat=clientSvc&tag=ransom'); the_post(); ?>[/COLOR][/B]
							<h4><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h4>
							<p><?php the_excerpt(); ?></p>
							<h5><?php echo get_post_meta($post->ID,'name',true); ?></h5>
							<h6><?php echo get_post_meta($post->ID,'job',true); ?></h6>
							</div>

and it wiped out the entire carousel’s content.
What is confusing is this worked just fine on the http://thebigmeow.us/technology/ page.
Same carousel. changed the name & cat to bring in a diff post…works.
any word press expert here who could tell me what I did wrong?
Thank you
d