/* <![CDATA[ */
		jQuery(document).ready(function($) {
			// Your puppet's here
			$(document).pngFix(); // For PNG transparency
			
			
			
			// Slide category
				lastBlock = $(".a1");
				maxWidth = 260;
				minWidth = 70;	
				
				$("#items li div").hover(	
					function(){			
						$(lastBlock).animate({width: minWidth+"px"}, { queue:false, duration:400 });
						$(this).animate({width: maxWidth+"px"}, { queue:false, duration:400});
						currentBlock = this;				
						lastBlock = this;			
					}
				);
				
				$('#msg_body').hide();
				$('a#msg_head').click(function() {
					$('#msg_body').slideToggle("slow");
					$('.close').addClass('hide');
					return false;
					//$("#numeID").addClass("numeClasa");
				});

				
				
			
		});
		
/* ]]> */
