<?xml version="1.0" encoding="UTF-8"?>
<code>
  <code>&lt;html&gt;
	&lt;head&gt;
        &lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot; /&gt;
        &lt;script type=&quot;text/javascript&quot; src=&quot;http://jqueryjs.googlecode.com/files/jquery-1.3.2.min.js&quot;&gt;&lt;/script&gt;
        &lt;script type=&quot;text/javascript&quot;&gt;
			var height = 0;
			var to = null;
			var theAnimation;
			var newsScroller;
			$(document)
			.ready(function(){
				newsScroller = $('#newsScroller');
				
				var curSet = newsScroller
				.prev()
					.addClass('ns')
				.end()
				.wrap('&lt;div&gt;')
				.parent()
					.addClass('ns')
				.end()
				.wrap('&lt;div&gt;')
				.children()
				.slice(0,4)
				.each(function(){
					height += $(this).outerHeight(true);
				});
				
				theAnimation = function(){
					if( !newsScroller.is(':animated') ){
						newsScroller.animate({top:-height},1000,function(){
							height = 0;
							curSet = newsScroller
							.append(curSet)
							.css('top',0)
							.children()
							.slice(0,4)
							.each(function(){
								height += $(this).outerHeight(true);
							});
						});
					}
				};
				
				to = setInterval(theAnimation,4000);
				
				newsScroller.bind('mouseenter',function(){
					clearInterval(to);
				})
				.bind('mouseleave',function(){
					theAnimation();
					to = setInterval(theAnimation,4000);
				});
			});
		&lt;/script&gt;
        &lt;style media=&quot;screen, projector&quot;&gt;
			h3#newsScrollerTitle{
				margin:0;
				padding:0;
				font:bold 14px/1.2 Georgia, &quot;Times New Roman&quot;, Times, serif;
			}
			dl#newsScroller{
				font:normal 11px/1.4 Arial, Helvetica, sans-serif;
				padding:0;
				margin:0;
			}
			dl#newsScroller dt{
				font-weight:bold;
			}
			dl#newsScroller dd{
				padding:0 0 0 11px;
				margin:0;
			}
			dl#newsScroller dd p{
				padding:0;
				margin:0 0 11px 0;
			}
			dl#newsScroller dd + dd{
				padding:0 0 0 22px;
			}
			
			h3#newsScrollerTitle.ns{
				padding:5px 11px;
				border:1px solid #B18C58;
				border-bottom:none;
				background:#beb677;
				width:278px;
			}
			div.ns{
				padding:11px;
				border:1px solid #B18C58;
				border-top:none;
				background:#E8E4B4;
				width:278px;
				height:300px;
				position:relative;
				overflow:hidden;
			}
			div.ns div{
				height:300px;
				overflow:hidden;
			}
			div.ns dl{
				position:relative;
				top:0;
			}
			div.ns dl dt,
			div.ns dl dd{
				position:relative;
			}
		&lt;/style&gt;
    &lt;/head&gt;
    
    &lt;body&gt;
    	&lt;h3 id=&quot;newsScrollerTitle&quot;&gt;Our News&lt;/h3&gt;
    	&lt;dl id=&quot;newsScroller&quot;&gt;
        	&lt;dt&gt;Web Tech November Meetup Presentation&lt;/dt&gt;
            &lt;dd&gt;
                &lt;p&gt;Last night I had the opportunity to speak at the Web Tech 
                November Meetup in Baltimore about jQuery.  I focused mainly 
                on traversing since I believe once you fully grasp some of 
                the built in jQuery traversing methods you can do just about 
                anything using jQuery and do it easily.&lt;/p&gt;
                &lt;p&gt;Preparations&lt;br/&gt;
                I spent about three weeks getting [...]&lt;/p&gt;
			&lt;/dd&gt;
            &lt;dd&gt;Tuesday, November 25th, 2008&lt;/dd&gt;
            &lt;dd&gt;Posted in Presentations, Web Development, jQuery | Edit | No Comments &#194;&#187;&lt;/dd&gt;
            
        	&lt;dt&gt;Slide in tab window using jQuery&lt;/dt&gt;
            &lt;dd&gt;
                &lt;p&gt;Say you want to wanted to put little tabs - you know, the 
                ones like what you get from a lawyer or a realestate again to
                point out important things - off the side of your page so that
                your users can click, bring that tab into view to see what 
                important information you want [...]&lt;/p&gt;
            &lt;/dd&gt;
            &lt;dd&gt;Thursday, November 20th, 2008&lt;/dd&gt;
            &lt;dd&gt;Posted in Tips, Tutorials, Web Development, jQuery | Edit | 5 Comments &#194;&#187;&lt;/dd&gt;
            
        	&lt;dt&gt;Better jQuery Code #2&lt;/dt&gt;
            &lt;dd&gt;
                &lt;p&gt;In a follow up to my Better jQuery Code #1 post I will be
                writing about some other small items that I have found to make
                my code better and more readable.&lt;/p&gt;
                &lt;p&gt;Chaining&lt;br/&gt;
                Chaining is one of the most beautiful and time save pieces of 
                code structure that jQuery brought to the game, the problem is
                is [...]   &lt;/p&gt;         
            &lt;/dd&gt;
            &lt;dd&gt;Sunday, November 16th, 2008&lt;/dd&gt;
            &lt;dd&gt;Posted in Tips, Web Development, jQuery | Edit | 2 Comments &#194;&#187;&lt;/dd&gt;
            
        	&lt;dt&gt;Better jQuery Code #1&lt;/dt&gt;
            &lt;dd&gt;
                &lt;p&gt;I've been wanting to write some jQuery tips for a while now 
                and just never know what to really say until I saw Marc 
                Grabanski's 5 Tips for Better jQuery Code.  Although I have 
                tips, I don't think I have any that are Earth shattering or ones
                that I can rank higher then the other, [...]&lt;/p&gt;            
            &lt;/dd&gt;
            &lt;dd&gt;Saturday, November 15th, 2008&lt;/dd&gt;
            &lt;dd&gt;Posted in Tips, Web Development, jQuery | Edit | 8 Comments &#194;&#187;&lt;/dd&gt;
            
        	&lt;dt&gt;Release of jQuery UI v1.5&lt;/dt&gt;
            &lt;dd&gt;
                &lt;p&gt;Well ladies and gents, it is finally here! Mark June 9th, 2008
                as the day the web got better, jQuery's long awaited release of 
                it's UI library update is here. Flushed with many bug fixes, a bunch
                of really good examples, many new features and a theme builder.&lt;/p&gt;
                When jQuery UI first came out [...]            
            &lt;/dd&gt;
            &lt;dd&gt;Monday, June 9th, 2008&lt;/dd&gt;
            &lt;dd&gt;Posted in jQuery | Edit | 2 Comments &#194;&#187;&lt;/dd&gt;
        &lt;/dl&gt;
    &lt;/body&gt;
&lt;/html&gt;</code>
  <created-at type="datetime">2009-04-20T01:06:26Z</created-at>
  <description>from http://benjaminsterling.com/blog-news-ticker/</description>
  <id type="integer">171</id>
  <language-id type="integer">16</language-id>
  <privated type="boolean">false</privated>
  <title>cool newsticker using jquery</title>
  <updated-at type="datetime">2009-04-20T01:06:26Z</updated-at>
  <user-id type="integer">7</user-id>
</code>
