		/*
		 * Slideshow
		 */
		
		jQuery(document).ready(function() {
				
				jQuery("#showcaseTabs li").bind('mouseover', function(){
					
					var $Slide = "#" + this.id + "_content";
					jQuery($Slide).addClass('top').show();																
				});
				
				jQuery("#showcaseTabs li").bind('mouseout', function(){
					
					var $Slide = "#" + this.id + "_content";
					jQuery($Slide).hide().removeClass('top');									
				});				
				
				
				jQuery("#showcase ul").bind('mouseover', function(){
									
					jQuery("#tab0_content").hide();																		
				});	
						
				jQuery("#showcase ul").bind('mouseout', function(){
					
					jQuery("#tab0_content").show();																
				});
				
		});