<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Manmohanjit Singh &#187; Manmohanjit Singh</title>
	<atom:link href="http://manmohanjit.com/author/manmohanjit/feed/" rel="self" type="application/rss+xml" />
	<link>http://manmohanjit.com</link>
	<description>Expressing Myself</description>
	<lastBuildDate>Tue, 07 Sep 2010 02:35:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1-alpha</generator>
		<item>
		<title>How to create a simple jQuery accordion</title>
		<link>http://manmohanjit.com/2010/09/05/create-a-simple-jquery-accordion/</link>
		<comments>http://manmohanjit.com/2010/09/05/create-a-simple-jquery-accordion/#comments</comments>
		<pubDate>Sun, 05 Sep 2010 20:00:28 +0000</pubDate>
		<dc:creator>Manmohanjit Singh</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[CSS3]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://manmohanjit.com/?p=1260</guid>
		<description><![CDATA[It&#8217;s been a long time since I&#8217;ve done a tutorial. Anyway accordions could be helpful at times. You could use it to display important information on your site without wasting much space. Here&#8217;s a simple tutorial on how you could create a simple accordion for your site. It may be simple but you&#8217;ll still require [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="size-full wp-image-1316   aligncenter" title="Simple jQuery accordion" src="http://content.manmohanjit.com/uploads/2010/09/accordion.png" alt="Simple jQuery accordion" width="710" height="150" /></p>
<p>It&#8217;s been a long time since I&#8217;ve done a tutorial. Anyway accordions  could be helpful at times. You could use it to display important  information on your site without wasting much space. Here&#8217;s a simple tutorial on how you could  create a simple accordion for your site. It may be simple but you&#8217;ll  still require some basic HTML and CSS knowledge, having know how to use jQuery would be a definite plus.</p>
<div class="tutorial-buttons"><a class="demo" href="http://content.manmohanjit.com/uploads/demos/simple-jquery-accordion/">Demo</a><a class="download" href="http://content.manmohanjit.com/uploads/demos/simple-jquery-accordion/download.zip">Download</a></div>
<h3 style="text-align: left;">First Step: Structure</h3>
<p>The markup is pretty simple. The <code>&lt;div class="section"&gt;</code> tag will be the item. The <code>&lt;h3 class="title"&gt;</code> tag will be the title for the item. And everything in <code>&lt;div class="details"&gt;</code> will be the content of your item which will slide up and down. You can have as many items as you&#8217;d like.</p>
<p>Basically,</p>
<ul>
<li><code>&lt;div class=”section”&gt;</code> = Single item
<ul>
<li><code>&lt;h3 class="title"&gt;</code> = The title</li>
<li><code>&lt;div class=”details”&gt;</code> = The content, that will slide up and down</li>
</ul>
</li>
</ul>
<p>And here&#8217;s the code</p>
<pre><code>&lt;div id="faq"&gt;
    &lt;div class="navigation"&gt;
        &lt;p class="title"&gt;FAQ&lt;/p&gt;
        &lt;p class="expand"&gt;&lt;a href="#"&gt;Expand All&lt;/a&gt;&lt;/p&gt;
        &lt;p class="collapse"&gt;&lt;a href="#"&gt;Collapse All&lt;/a&gt;&lt;/p&gt;
        &lt;div class="clear"&gt;&lt;/div&gt;
    &lt;/div&gt;

    &lt;div class="section"&gt;
        &lt;h3 class="title"&gt;Lorem ipsum dolor sit amet, Lorem ipsum dolor sit amet?&lt;/h3&gt;
        &lt;div class="details"&gt;
            &lt;!--Content Goes Here--&gt;
        &lt;/div&gt;
    &lt;/div&gt;
&lt;/div&gt;</code></pre>
<p>Replace <code>&lt;!-- Content Goes Here --&gt;</code> with your real content.</p>
<h3 style="text-align: left;">Second Step: Styling</h3>
<p>Here&#8217;s the part where we style up everything and add some pretty colours(colors) to the accordion. I used some basic CSS3 too.</p>
<pre><code>.clear { clear: both; }
#faq {
    background: #f9f9f9;
    border: 1px #bbb solid;
    margin: auto;
    width: 700px;

    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;

    box-shadow: 2px 2px 4px #333;
    -moz-box-shadow: 2px 2px 4px #333;
    -webkit-box-shadow: 2px 2px 4px #333;
}
    #faq .navigation {
        background: #fff url(images/bg-2.png) repeat-x bottom left;
        border-bottom: 1px #bbb solid;
        position: relative;
        z-index: 1;
    }
        #faq .navigation p.title { width: 100%; position: absolute; z-index: 1; top: 5px; bottom: 5px; font-weight: 700; color: #555; text-align: center;  }
        #faq .navigation p.expand { float: left; position: relative; z-index: 1; }
        #faq .navigation p.collapse { float: right; position: relative; z-index: 1; }
        #faq .navigation p {
            font-size: 14px;
            margin: 0;
            text-shadow: 1px 1px #FFF;
        }
            #faq .navigation p.expand a { border-right: 1px #bbb solid; }
            #faq .navigation p.collapse a { border-left: 1px #bbb solid; }
            #faq .navigation p a {
                outline: none;
                display: block;
                padding: 5px 10px;

                text-decoration: none;
                color: #666;
            }
            #faq .navigation p a:hover { color: #444; }
            #faq .navigation p a:active { color: #444; background: #e2e2e2; }
    #faq .section {
        background: #e8e8e8 url(images/bg-3.png) repeat top left;
        border-bottom: 1px #bbb solid;
        padding: 7px 10px;
    }
    #faq .section:last-child { border: none; }
        #faq .section h3.title {
            background: url(images/plus.png) no-repeat center right;
            color: #444;
            font-size: 12.6px;
            margin: 0;
            padding: 0 12px 0 0;
            cursor: pointer;
        }
        #faq .section h3.title.open { background-image: url(images/minus.png); }
        #faq .section .details {
            display: none;
        }
            #faq .section .details p {
                margin: 3px 0 6px 0;
            }</code></pre>
<h3 style="text-align: left;">Third Step: jQuery Magic</h3>
<p>This is where we make everything move, with some jQuery magic. First of all make sure you&#8217;ve included jQuery in your site.</p>
<pre>&lt;script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"&gt;&lt;/script&gt;</pre>
<p>Now its time for the real magic:</p>
<pre><code>$(document).ready(function(){
	$('#faq .navigation .expand a').click(function() {
		$(this).parent().parent().parent().children('.section').children('h3.title').addClass('open');
		$(this).parent().parent().parent().children('.section').children('.details').stop(true, true).slideDown();
		return false;
	});
	$('#faq .navigation .collapse a').click(function() {
		$(this).parent().parent().parent().children('.section').children('h3.title').removeClass('open');
		$(this).parent().parent().parent().children('.section').children('.details').stop(true, true).slideUp();
		return false;
	});
	$('#faq .section').click(function() {
		$(this).toggleClass('open');
		$(this).parent().children('.details').stop(true, true).slideToggle();
		return false;
	});
});
</code></pre>
<h3>Conclusion</h3>
<p>That&#8217;s it! It&#8217;s as simple as that, it should work. I&#8217;d love some questions!</p>
]]></content:encoded>
			<wfw:commentRss>http://manmohanjit.com/2010/09/05/create-a-simple-jquery-accordion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kanye: &#8220;I&#8217;m sorry Taylor.&#8221;</title>
		<link>http://manmohanjit.com/2010/09/04/kanye-im-sorry-taylor/</link>
		<comments>http://manmohanjit.com/2010/09/04/kanye-im-sorry-taylor/#comments</comments>
		<pubDate>Sat, 04 Sep 2010 15:03:54 +0000</pubDate>
		<dc:creator>Manmohanjit Singh</dc:creator>
				<category><![CDATA[Entertainment]]></category>
		<category><![CDATA[Kanye West]]></category>
		<category><![CDATA[Taylor Swift]]></category>

		<guid isPermaLink="false">http://manmohanjit.com/?p=1257</guid>
		<description><![CDATA[Kanye West publicly posted &#8220;I&#8217;m sorry Taylor.&#8221; on Twitter. Good start! I like him.]]></description>
			<content:encoded><![CDATA[<p>Kanye West <a href="http://twitter.com/kanyewest/status/22980779554">publicly posted</a> &#8220;I&#8217;m sorry Taylor.&#8221; on Twitter. Good start! <img src='http://manmohanjit.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>I like him.</p>
]]></content:encoded>
			<wfw:commentRss>http://manmohanjit.com/2010/09/04/kanye-im-sorry-taylor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iTunes 10, new iPods</title>
		<link>http://manmohanjit.com/2010/09/01/itunes-10-new-ipods/</link>
		<comments>http://manmohanjit.com/2010/09/01/itunes-10-new-ipods/#comments</comments>
		<pubDate>Wed, 01 Sep 2010 17:44:18 +0000</pubDate>
		<dc:creator>Manmohanjit Singh</dc:creator>
				<category><![CDATA[Entertainment]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[iPod]]></category>
		<category><![CDATA[iTunes]]></category>

		<guid isPermaLink="false">http://manmohanjit.com/?p=1255</guid>
		<description><![CDATA[Awesome stuff at the Apple event. Apple announced a whole new line up of iPods. Including a totally refreshed iPod Touch. With Retina display! And a Camera that records HD. Ping has been introduced in iTunes 10, which is most probably similar to Last.FM. Awesome stuff!]]></description>
			<content:encoded><![CDATA[<p>Awesome stuff at the Apple event. Apple announced a whole new line up of iPods. Including a totally refreshed iPod Touch. With Retina display! And a Camera that records HD.</p>
<p>Ping has been introduced in iTunes 10, which is most probably similar to Last.FM. Awesome stuff!</p>
]]></content:encoded>
			<wfw:commentRss>http://manmohanjit.com/2010/09/01/itunes-10-new-ipods/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dancing dog, simply stunning</title>
		<link>http://manmohanjit.com/2010/08/31/dancing-dog-simply-stunning/</link>
		<comments>http://manmohanjit.com/2010/08/31/dancing-dog-simply-stunning/#comments</comments>
		<pubDate>Tue, 31 Aug 2010 18:07:42 +0000</pubDate>
		<dc:creator>Manmohanjit Singh</dc:creator>
				<category><![CDATA[Animal]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Art]]></category>
		<category><![CDATA[Dancing]]></category>
		<category><![CDATA[Dog]]></category>

		<guid isPermaLink="false">http://manmohanjit.com/?p=1252</guid>
		<description><![CDATA[This dog kicks ass. It&#8217;s sure smart! Totally stunning!]]></description>
			<content:encoded><![CDATA[<p>This dog kicks ass. It&#8217;s sure smart! Totally stunning!</p>
<p><iframe class="youtube-player" type="text/html" width="710" height="557" src="http://www.youtube.com/embed/Nc9xq-TVyHI" frameborder="0"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://manmohanjit.com/2010/08/31/dancing-dog-simply-stunning/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Puppy-Throwing bitch, she should die</title>
		<link>http://manmohanjit.com/2010/08/31/puppy-throwing-bitch-she-should-die/</link>
		<comments>http://manmohanjit.com/2010/08/31/puppy-throwing-bitch-she-should-die/#comments</comments>
		<pubDate>Tue, 31 Aug 2010 08:57:29 +0000</pubDate>
		<dc:creator>Manmohanjit Singh</dc:creator>
				<category><![CDATA[Animal]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Animal Abuse]]></category>
		<category><![CDATA[Cute]]></category>
		<category><![CDATA[Puppy]]></category>

		<guid isPermaLink="false">http://manmohanjit.com/?p=1249</guid>
		<description><![CDATA[Trust me, do not click here if you can&#8217;t handle animal abuse. Damn, that bitch should die. I have a puppy so its kinda hard watching it, I closed it after a few seconds. Who would do such a thing?! Puppies are gifts, they are too cute to be killed! I honestly hope that bitch [...]]]></description>
			<content:encoded><![CDATA[<p>Trust me, do not <a href="http://gawker.com/5626105/4chan-on-the-hunt-for-puppy+throwing-girl?skyline=true&amp;s=i">click here</a> if you can&#8217;t handle animal abuse. Damn, that bitch should die. I have a puppy so its kinda hard watching it, I closed it after a few seconds.</p>
<p>Who would do such a thing?! Puppies are gifts, they are too cute to be killed! I honestly hope that bitch suffers a bad death. I would strangle her.</p>
<p><a href="http://www.odt.co.nz/news/national/123697/teens-beat-puppy-and-throw-it-through-basketball-hoop">Another puppy related incident</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://manmohanjit.com/2010/08/31/puppy-throwing-bitch-she-should-die/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Picasa integration&#8230; check, Twitter integration maybe not</title>
		<link>http://manmohanjit.com/2010/08/24/picasa-integration-check-twitter-integration-maybe-not/</link>
		<comments>http://manmohanjit.com/2010/08/24/picasa-integration-check-twitter-integration-maybe-not/#comments</comments>
		<pubDate>Tue, 24 Aug 2010 13:13:32 +0000</pubDate>
		<dc:creator>Manmohanjit Singh</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Picasa]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://manmohanjit.com/?p=1235</guid>
		<description><![CDATA[It took a lot of thinking but I&#8217;ve finally integrated Picasa with my current theme as I&#8217;ve promised earlier. After looking at Picasa&#8217;s API, I actually gave up. But with help of several tutorials, I regained hope. So I started. And now its fully functional. I&#8217;m using two jQuery plugins to manage the images. TinyCarousel [...]]]></description>
			<content:encoded><![CDATA[<p>It took a lot of thinking but I&#8217;ve finally integrated Picasa with my current theme as I&#8217;ve <a href="http://localhost.org/wordpress/2010/08/21/picasa-test/">promised earlier</a>. After looking at <a href="http://code.google.com/apis/picasaweb/overview.html">Picasa&#8217;s API</a>, I actually gave up. But with help of several tutorials, I regained hope. So I started. And now its fully functional.</p>
<p>I&#8217;m using two jQuery plugins to manage the images. <a href="http://www.baijs.nl/tinycarousel/">TinyCarousel</a> is one of them, it creates an image slider for navigation and <a href="http://colorpowered.com/colorbox/">ColorBox</a> helps open clicked images without leaving the page. It&#8217;s actually fun. Formatting images from the album feed is a breeze with the help of <a href="http://simplepie.org/">SimplePie</a> which by default is included in WordPress. It does all the back end work for me.</p>
<div id="e3573dee9ca456ec823cfe1b42ee4b92" class="picasa-album"><a class="buttons prev" href="#"></a><a class="buttons next" href="#"></a><div class="viewport"><ul class="overview"><li><a rel="e3573dee9ca456ec823cfe1b42ee4b92" style="background-image:url('http://lh6.ggpht.com/_1aKXJovK1_4/TF6C_r5N0bI/AAAAAAAAAE0/l47sV98KRbo/s125-c/Jason%20Derulo%20(7).jpg');" class="direct-image-link" title="Jason Derulo (7).jpg" href="http://lh6.ggpht.com/_1aKXJovK1_4/TF6C_r5N0bI/AAAAAAAAAE0/l47sV98KRbo/s700/Jason%20Derulo%20(7).jpg"></a><a class="picasa-image-link" title="View this image on Picasa" href="http://picasaweb.google.com/115831860493142173853/JasonDerulo#5502979825319399858">Jason Derulo (7).jpg</a></li><li><a rel="e3573dee9ca456ec823cfe1b42ee4b92" style="background-image:url('http://lh6.ggpht.com/_1aKXJovK1_4/TF6C-beKl0I/AAAAAAAAAEs/Nsc0IPqcnwE/s125-c/Jason%20Derulo%20(5).jpg');" class="direct-image-link" title="Jason Derulo (5).jpg" href="http://lh6.ggpht.com/_1aKXJovK1_4/TF6C-beKl0I/AAAAAAAAAEs/Nsc0IPqcnwE/s700/Jason%20Derulo%20(5).jpg"></a><a class="picasa-image-link" title="View this image on Picasa" href="http://picasaweb.google.com/115831860493142173853/JasonDerulo#5502979803731105602">Jason Derulo (5).jpg</a></li><li><a rel="e3573dee9ca456ec823cfe1b42ee4b92" style="background-image:url('http://lh6.ggpht.com/_1aKXJovK1_4/TF6C9oQxGII/AAAAAAAAAEo/BAt-6hFZuxI/s125-c/Jason%20Derulo%20(48).jpg');" class="direct-image-link" title="Jason Derulo (48).jpg" href="http://lh6.ggpht.com/_1aKXJovK1_4/TF6C9oQxGII/AAAAAAAAAEo/BAt-6hFZuxI/s700/Jason%20Derulo%20(48).jpg"></a><a class="picasa-image-link" title="View this image on Picasa" href="http://picasaweb.google.com/115831860493142173853/JasonDerulo#5502979789984700546">Jason Derulo (48).jpg</a></li><li><a rel="e3573dee9ca456ec823cfe1b42ee4b92" style="background-image:url('http://lh4.ggpht.com/_1aKXJovK1_4/TF6C8xH602I/AAAAAAAAAEk/0VvRUE63bJs/s125-c/Jason%20Derulo%20(47).jpg');" class="direct-image-link" title="Jason Derulo (47).jpg" href="http://lh4.ggpht.com/_1aKXJovK1_4/TF6C8xH602I/AAAAAAAAAEk/0VvRUE63bJs/s700/Jason%20Derulo%20(47).jpg"></a><a class="picasa-image-link" title="View this image on Picasa" href="http://picasaweb.google.com/115831860493142173853/JasonDerulo#5502979775183639394">Jason Derulo (47).jpg</a></li><li><a rel="e3573dee9ca456ec823cfe1b42ee4b92" style="background-image:url('http://lh3.ggpht.com/_1aKXJovK1_4/TF6C8AZ4jxI/AAAAAAAAAEg/gxyq2J-kHDA/s125-c/Jason%20Derulo%20(46).jpg');" class="direct-image-link" title="Jason Derulo (46).jpg" href="http://lh3.ggpht.com/_1aKXJovK1_4/TF6C8AZ4jxI/AAAAAAAAAEg/gxyq2J-kHDA/s700/Jason%20Derulo%20(46).jpg"></a><a class="picasa-image-link" title="View this image on Picasa" href="http://picasaweb.google.com/115831860493142173853/JasonDerulo#5502979762105650962">Jason Derulo (46).jpg</a></li><li><a rel="e3573dee9ca456ec823cfe1b42ee4b92" style="background-image:url('http://lh4.ggpht.com/_1aKXJovK1_4/TF6C71QCtAI/AAAAAAAAAEc/NGczYMMdNoE/s125-c/Jason%20Derulo%20(45).jpg');" class="direct-image-link" title="Jason Derulo (45).jpg" href="http://lh4.ggpht.com/_1aKXJovK1_4/TF6C71QCtAI/AAAAAAAAAEc/NGczYMMdNoE/s700/Jason%20Derulo%20(45).jpg"></a><a class="picasa-image-link" title="View this image on Picasa" href="http://picasaweb.google.com/115831860493142173853/JasonDerulo#5502979759111582722">Jason Derulo (45).jpg</a></li><li><a rel="e3573dee9ca456ec823cfe1b42ee4b92" style="background-image:url('http://lh5.ggpht.com/_1aKXJovK1_4/TF6C7Q5tobI/AAAAAAAAAEY/xACraltHUZI/s125-c/Jason%20Derulo%20(44).jpg');" class="direct-image-link" title="Jason Derulo (44).jpg" href="http://lh5.ggpht.com/_1aKXJovK1_4/TF6C7Q5tobI/AAAAAAAAAEY/xACraltHUZI/s700/Jason%20Derulo%20(44).jpg"></a><a class="picasa-image-link" title="View this image on Picasa" href="http://picasaweb.google.com/115831860493142173853/JasonDerulo#5502979749354250674">Jason Derulo (44).jpg</a></li><li><a rel="e3573dee9ca456ec823cfe1b42ee4b92" style="background-image:url('http://lh3.ggpht.com/_1aKXJovK1_4/TF6C6lWCUXI/AAAAAAAAAEU/Esz87tnynvA/s125-c/Jason%20Derulo%20(43).jpg');" class="direct-image-link" title="Jason Derulo (43).jpg" href="http://lh3.ggpht.com/_1aKXJovK1_4/TF6C6lWCUXI/AAAAAAAAAEU/Esz87tnynvA/s700/Jason%20Derulo%20(43).jpg"></a><a class="picasa-image-link" title="View this image on Picasa" href="http://picasaweb.google.com/115831860493142173853/JasonDerulo#5502979737661886834">Jason Derulo (43).jpg</a></li><li><a rel="e3573dee9ca456ec823cfe1b42ee4b92" style="background-image:url('http://lh6.ggpht.com/_1aKXJovK1_4/TF6C59WM4GI/AAAAAAAAAEQ/gmwMYWLbkUU/s125-c/Jason%20Derulo%20(42).jpg');" class="direct-image-link" title="Jason Derulo (42).jpg" href="http://lh6.ggpht.com/_1aKXJovK1_4/TF6C59WM4GI/AAAAAAAAAEQ/gmwMYWLbkUU/s700/Jason%20Derulo%20(42).jpg"></a><a class="picasa-image-link" title="View this image on Picasa" href="http://picasaweb.google.com/115831860493142173853/JasonDerulo#5502979726925160546">Jason Derulo (42).jpg</a></li><li><a rel="e3573dee9ca456ec823cfe1b42ee4b92" style="background-image:url('http://lh3.ggpht.com/_1aKXJovK1_4/TF6C5NwkPuI/AAAAAAAAAEM/KnjUIS4fptY/s125-c/Jason%20Derulo%20(41).jpg');" class="direct-image-link" title="Jason Derulo (41).jpg" href="http://lh3.ggpht.com/_1aKXJovK1_4/TF6C5NwkPuI/AAAAAAAAAEM/KnjUIS4fptY/s700/Jason%20Derulo%20(41).jpg"></a><a class="picasa-image-link" title="View this image on Picasa" href="http://picasaweb.google.com/115831860493142173853/JasonDerulo#5502979714150842082">Jason Derulo (41).jpg</a></li><li><a rel="e3573dee9ca456ec823cfe1b42ee4b92" style="background-image:url('http://lh6.ggpht.com/_1aKXJovK1_4/TF6C4gPByTI/AAAAAAAAAEI/m7yW2hr5iXo/s125-c/Jason%20Derulo%20(40).jpg');" class="direct-image-link" title="Jason Derulo (40).jpg" href="http://lh6.ggpht.com/_1aKXJovK1_4/TF6C4gPByTI/AAAAAAAAAEI/m7yW2hr5iXo/s700/Jason%20Derulo%20(40).jpg"></a><a class="picasa-image-link" title="View this image on Picasa" href="http://picasaweb.google.com/115831860493142173853/JasonDerulo#5502979701930576178">Jason Derulo (40).jpg</a></li><li><a rel="e3573dee9ca456ec823cfe1b42ee4b92" style="background-image:url('http://lh4.ggpht.com/_1aKXJovK1_4/TF6C33qS1yI/AAAAAAAAAEE/QuVAVM16biI/s125-c/Jason%20Derulo%20(4).jpg');" class="direct-image-link" title="Jason Derulo (4).jpg" href="http://lh4.ggpht.com/_1aKXJovK1_4/TF6C33qS1yI/AAAAAAAAAEE/QuVAVM16biI/s700/Jason%20Derulo%20(4).jpg"></a><a class="picasa-image-link" title="View this image on Picasa" href="http://picasaweb.google.com/115831860493142173853/JasonDerulo#5502979691039086370">Jason Derulo (4).jpg</a></li><li><a rel="e3573dee9ca456ec823cfe1b42ee4b92" style="background-image:url('http://lh6.ggpht.com/_1aKXJovK1_4/TF6C3SomUJI/AAAAAAAAAEA/H0vo9H6cwi0/s125-c/Jason%20Derulo%20(39).jpg');" class="direct-image-link" title="Jason Derulo (39).jpg" href="http://lh6.ggpht.com/_1aKXJovK1_4/TF6C3SomUJI/AAAAAAAAAEA/H0vo9H6cwi0/s700/Jason%20Derulo%20(39).jpg"></a><a class="picasa-image-link" title="View this image on Picasa" href="http://picasaweb.google.com/115831860493142173853/JasonDerulo#5502979681099862162">Jason Derulo (39).jpg</a></li><li><a rel="e3573dee9ca456ec823cfe1b42ee4b92" style="background-image:url('http://lh3.ggpht.com/_1aKXJovK1_4/TF6C24-5LSI/AAAAAAAAAD8/w9RVQWqbLz4/s125-c/Jason%20Derulo%20(38).jpg');" class="direct-image-link" title="Jason Derulo (38).jpg" href="http://lh3.ggpht.com/_1aKXJovK1_4/TF6C24-5LSI/AAAAAAAAAD8/w9RVQWqbLz4/s700/Jason%20Derulo%20(38).jpg"></a><a class="picasa-image-link" title="View this image on Picasa" href="http://picasaweb.google.com/115831860493142173853/JasonDerulo#5502979674214051106">Jason Derulo (38).jpg</a></li><li><a rel="e3573dee9ca456ec823cfe1b42ee4b92" style="background-image:url('http://lh5.ggpht.com/_1aKXJovK1_4/TF6C2QfdXuI/AAAAAAAAAD4/VVjWYe7uj-g/s125-c/Jason%20Derulo%20(37).jpg');" class="direct-image-link" title="Jason Derulo (37).jpg" href="http://lh5.ggpht.com/_1aKXJovK1_4/TF6C2QfdXuI/AAAAAAAAAD4/VVjWYe7uj-g/s700/Jason%20Derulo%20(37).jpg"></a><a class="picasa-image-link" title="View this image on Picasa" href="http://picasaweb.google.com/115831860493142173853/JasonDerulo#5502979663344787170">Jason Derulo (37).jpg</a></li><li><a rel="e3573dee9ca456ec823cfe1b42ee4b92" style="background-image:url('http://lh6.ggpht.com/_1aKXJovK1_4/TF6C14hwyqI/AAAAAAAAAD0/E4xxnXPFg5s/s125-c/Jason%20Derulo%20(36).jpg');" class="direct-image-link" title="Jason Derulo (36).jpg" href="http://lh6.ggpht.com/_1aKXJovK1_4/TF6C14hwyqI/AAAAAAAAAD0/E4xxnXPFg5s/s700/Jason%20Derulo%20(36).jpg"></a><a class="picasa-image-link" title="View this image on Picasa" href="http://picasaweb.google.com/115831860493142173853/JasonDerulo#5502979656911997602">Jason Derulo (36).jpg</a></li><li><a rel="e3573dee9ca456ec823cfe1b42ee4b92" style="background-image:url('http://lh3.ggpht.com/_1aKXJovK1_4/TF6C1F6Mx8I/AAAAAAAAADw/xrG0Bv8k7aE/s125-c/Jason%20Derulo%20(35).jpg');" class="direct-image-link" title="Jason Derulo (35).jpg" href="http://lh3.ggpht.com/_1aKXJovK1_4/TF6C1F6Mx8I/AAAAAAAAADw/xrG0Bv8k7aE/s700/Jason%20Derulo%20(35).jpg"></a><a class="picasa-image-link" title="View this image on Picasa" href="http://picasaweb.google.com/115831860493142173853/JasonDerulo#5502979643324286914">Jason Derulo (35).jpg</a></li><li><a rel="e3573dee9ca456ec823cfe1b42ee4b92" style="background-image:url('http://lh4.ggpht.com/_1aKXJovK1_4/TF6C0zHeZxI/AAAAAAAAADs/V3ilaxHh39g/s125-c/Jason%20Derulo%20(34).jpg');" class="direct-image-link" title="Jason Derulo (34).jpg" href="http://lh4.ggpht.com/_1aKXJovK1_4/TF6C0zHeZxI/AAAAAAAAADs/V3ilaxHh39g/s700/Jason%20Derulo%20(34).jpg"></a><a class="picasa-image-link" title="View this image on Picasa" href="http://picasaweb.google.com/115831860493142173853/JasonDerulo#5502979638279694098">Jason Derulo (34).jpg</a></li><li><a rel="e3573dee9ca456ec823cfe1b42ee4b92" style="background-image:url('http://lh6.ggpht.com/_1aKXJovK1_4/TF6CzoUhdnI/AAAAAAAAADo/DEA5UFQ9MW4/s125-c/Jason%20Derulo%20(33).jpg');" class="direct-image-link" title="Jason Derulo (33).jpg" href="http://lh6.ggpht.com/_1aKXJovK1_4/TF6CzoUhdnI/AAAAAAAAADo/DEA5UFQ9MW4/s700/Jason%20Derulo%20(33).jpg"></a><a class="picasa-image-link" title="View this image on Picasa" href="http://picasaweb.google.com/115831860493142173853/JasonDerulo#5502979618201761394">Jason Derulo (33).jpg</a></li><li><a rel="e3573dee9ca456ec823cfe1b42ee4b92" style="background-image:url('http://lh5.ggpht.com/_1aKXJovK1_4/TF6CzO1KHxI/AAAAAAAAADk/LjR8z56h-M4/s125-c/Jason%20Derulo%20(32).jpg');" class="direct-image-link" title="Jason Derulo (32).jpg" href="http://lh5.ggpht.com/_1aKXJovK1_4/TF6CzO1KHxI/AAAAAAAAADk/LjR8z56h-M4/s700/Jason%20Derulo%20(32).jpg"></a><a class="picasa-image-link" title="View this image on Picasa" href="http://picasaweb.google.com/115831860493142173853/JasonDerulo#5502979611359321874">Jason Derulo (32).jpg</a></li><li><a rel="e3573dee9ca456ec823cfe1b42ee4b92" style="background-image:url('http://lh3.ggpht.com/_1aKXJovK1_4/TF6CyneCU8I/AAAAAAAAADg/3Q4AwiBCPBc/s125-c/Jason%20Derulo%20(31).jpg');" class="direct-image-link" title="Jason Derulo (31).jpg" href="http://lh3.ggpht.com/_1aKXJovK1_4/TF6CyneCU8I/AAAAAAAAADg/3Q4AwiBCPBc/s700/Jason%20Derulo%20(31).jpg"></a><a class="picasa-image-link" title="View this image on Picasa" href="http://picasaweb.google.com/115831860493142173853/JasonDerulo#5502979600793359298">Jason Derulo (31).jpg</a></li><li><a rel="e3573dee9ca456ec823cfe1b42ee4b92" style="background-image:url('http://lh5.ggpht.com/_1aKXJovK1_4/TF6CxlFgHHI/AAAAAAAAADc/T-G1uzW1hck/s125-c/Jason%20Derulo%20(30).jpg');" class="direct-image-link" title="Jason Derulo (30).jpg" href="http://lh5.ggpht.com/_1aKXJovK1_4/TF6CxlFgHHI/AAAAAAAAADc/T-G1uzW1hck/s700/Jason%20Derulo%20(30).jpg"></a><a class="picasa-image-link" title="View this image on Picasa" href="http://picasaweb.google.com/115831860493142173853/JasonDerulo#5502979582973713522">Jason Derulo (30).jpg</a></li><li><a rel="e3573dee9ca456ec823cfe1b42ee4b92" style="background-image:url('http://lh5.ggpht.com/_1aKXJovK1_4/TF6CxObiVmI/AAAAAAAAADY/BLGnrO8rMnE/s125-c/Jason%20Derulo%20(3).jpg');" class="direct-image-link" title="Jason Derulo (3).jpg" href="http://lh5.ggpht.com/_1aKXJovK1_4/TF6CxObiVmI/AAAAAAAAADY/BLGnrO8rMnE/s700/Jason%20Derulo%20(3).jpg"></a><a class="picasa-image-link" title="View this image on Picasa" href="http://picasaweb.google.com/115831860493142173853/JasonDerulo#5502979576892118626">Jason Derulo (3).jpg</a></li><li><a rel="e3573dee9ca456ec823cfe1b42ee4b92" style="background-image:url('http://lh4.ggpht.com/_1aKXJovK1_4/TF6CwuXTdXI/AAAAAAAAADU/rZ4yhguNpoY/s125-c/Jason%20Derulo%20(29).jpg');" class="direct-image-link" title="Jason Derulo (29).jpg" href="http://lh4.ggpht.com/_1aKXJovK1_4/TF6CwuXTdXI/AAAAAAAAADU/rZ4yhguNpoY/s700/Jason%20Derulo%20(29).jpg"></a><a class="picasa-image-link" title="View this image on Picasa" href="http://picasaweb.google.com/115831860493142173853/JasonDerulo#5502979568284431730">Jason Derulo (29).jpg</a></li><li><a rel="e3573dee9ca456ec823cfe1b42ee4b92" style="background-image:url('http://lh4.ggpht.com/_1aKXJovK1_4/TF6Cv7yubxI/AAAAAAAAADQ/GZdybAMr9mg/s125-c/Jason%20Derulo%20(28).jpg');" class="direct-image-link" title="Jason Derulo (28).jpg" href="http://lh4.ggpht.com/_1aKXJovK1_4/TF6Cv7yubxI/AAAAAAAAADQ/GZdybAMr9mg/s700/Jason%20Derulo%20(28).jpg"></a><a class="picasa-image-link" title="View this image on Picasa" href="http://picasaweb.google.com/115831860493142173853/JasonDerulo#5502979554709237522">Jason Derulo (28).jpg</a></li><li><a rel="e3573dee9ca456ec823cfe1b42ee4b92" style="background-image:url('http://lh5.ggpht.com/_1aKXJovK1_4/TF6Cu947X0I/AAAAAAAAADM/CnDjbHeN_EA/s125-c/Jason%20Derulo%20(27).jpg');" class="direct-image-link" title="Jason Derulo (27).jpg" href="http://lh5.ggpht.com/_1aKXJovK1_4/TF6Cu947X0I/AAAAAAAAADM/CnDjbHeN_EA/s700/Jason%20Derulo%20(27).jpg"></a><a class="picasa-image-link" title="View this image on Picasa" href="http://picasaweb.google.com/115831860493142173853/JasonDerulo#5502979538092252994">Jason Derulo (27).jpg</a></li><li><a rel="e3573dee9ca456ec823cfe1b42ee4b92" style="background-image:url('http://lh4.ggpht.com/_1aKXJovK1_4/TF6CuIJdm6I/AAAAAAAAADI/O_PNXOwwuz4/s125-c/Jason%20Derulo%20(26).jpg');" class="direct-image-link" title="Jason Derulo (26).jpg" href="http://lh4.ggpht.com/_1aKXJovK1_4/TF6CuIJdm6I/AAAAAAAAADI/O_PNXOwwuz4/s700/Jason%20Derulo%20(26).jpg"></a><a class="picasa-image-link" title="View this image on Picasa" href="http://picasaweb.google.com/115831860493142173853/JasonDerulo#5502979523666090914">Jason Derulo (26).jpg</a></li><li><a rel="e3573dee9ca456ec823cfe1b42ee4b92" style="background-image:url('http://lh4.ggpht.com/_1aKXJovK1_4/TF6CtTKYNgI/AAAAAAAAADE/hYFd_xbhbLs/s125-c/Jason%20Derulo%20(25).jpg');" class="direct-image-link" title="Jason Derulo (25).jpg" href="http://lh4.ggpht.com/_1aKXJovK1_4/TF6CtTKYNgI/AAAAAAAAADE/hYFd_xbhbLs/s700/Jason%20Derulo%20(25).jpg"></a><a class="picasa-image-link" title="View this image on Picasa" href="http://picasaweb.google.com/115831860493142173853/JasonDerulo#5502979509442852354">Jason Derulo (25).jpg</a></li><li><a rel="e3573dee9ca456ec823cfe1b42ee4b92" style="background-image:url('http://lh6.ggpht.com/_1aKXJovK1_4/TF6Cs9UQV9I/AAAAAAAAADA/71n486lRvcM/s125-c/Jason%20Derulo%20(24).jpg');" class="direct-image-link" title="Jason Derulo (24).jpg" href="http://lh6.ggpht.com/_1aKXJovK1_4/TF6Cs9UQV9I/AAAAAAAAADA/71n486lRvcM/s700/Jason%20Derulo%20(24).jpg"></a><a class="picasa-image-link" title="View this image on Picasa" href="http://picasaweb.google.com/115831860493142173853/JasonDerulo#5502979503578699730">Jason Derulo (24).jpg</a></li><li><a rel="e3573dee9ca456ec823cfe1b42ee4b92" style="background-image:url('http://lh3.ggpht.com/_1aKXJovK1_4/TF6CsURfQpI/AAAAAAAAAC8/Fx8dHwoue3Q/s125-c/Jason%20Derulo%20(23).jpg');" class="direct-image-link" title="Jason Derulo (23).jpg" href="http://lh3.ggpht.com/_1aKXJovK1_4/TF6CsURfQpI/AAAAAAAAAC8/Fx8dHwoue3Q/s700/Jason%20Derulo%20(23).jpg"></a><a class="picasa-image-link" title="View this image on Picasa" href="http://picasaweb.google.com/115831860493142173853/JasonDerulo#5502979492561240722">Jason Derulo (23).jpg</a></li><li><a rel="e3573dee9ca456ec823cfe1b42ee4b92" style="background-image:url('http://lh3.ggpht.com/_1aKXJovK1_4/TF6Cryn5x6I/AAAAAAAAAC4/9X2B1I3kSwI/s125-c/Jason%20Derulo%20(22).jpg');" class="direct-image-link" title="Jason Derulo (22).jpg" href="http://lh3.ggpht.com/_1aKXJovK1_4/TF6Cryn5x6I/AAAAAAAAAC4/9X2B1I3kSwI/s700/Jason%20Derulo%20(22).jpg"></a><a class="picasa-image-link" title="View this image on Picasa" href="http://picasaweb.google.com/115831860493142173853/JasonDerulo#5502979483528447906">Jason Derulo (22).jpg</a></li><li><a rel="e3573dee9ca456ec823cfe1b42ee4b92" style="background-image:url('http://lh4.ggpht.com/_1aKXJovK1_4/TF6CqwqeuhI/AAAAAAAAAC0/ZMCxGWrVH9g/s125-c/Jason%20Derulo%20(21).jpg');" class="direct-image-link" title="Jason Derulo (21).jpg" href="http://lh4.ggpht.com/_1aKXJovK1_4/TF6CqwqeuhI/AAAAAAAAAC0/ZMCxGWrVH9g/s700/Jason%20Derulo%20(21).jpg"></a><a class="picasa-image-link" title="View this image on Picasa" href="http://picasaweb.google.com/115831860493142173853/JasonDerulo#5502979465822517778">Jason Derulo (21).jpg</a></li><li><a rel="e3573dee9ca456ec823cfe1b42ee4b92" style="background-image:url('http://lh6.ggpht.com/_1aKXJovK1_4/TF6Cp9J8ZvI/AAAAAAAAACw/8JNwQoLwTBQ/s125-c/Jason%20Derulo%20(20).jpg');" class="direct-image-link" title="Jason Derulo (20).jpg" href="http://lh6.ggpht.com/_1aKXJovK1_4/TF6Cp9J8ZvI/AAAAAAAAACw/8JNwQoLwTBQ/s700/Jason%20Derulo%20(20).jpg"></a><a class="picasa-image-link" title="View this image on Picasa" href="http://picasaweb.google.com/115831860493142173853/JasonDerulo#5502979451995842290">Jason Derulo (20).jpg</a></li><li><a rel="e3573dee9ca456ec823cfe1b42ee4b92" style="background-image:url('http://lh3.ggpht.com/_1aKXJovK1_4/TF6CpBRYvzI/AAAAAAAAACs/d74UmWNlQEw/s125-c/Jason%20Derulo%20(2).jpg');" class="direct-image-link" title="Jason Derulo (2).jpg" href="http://lh3.ggpht.com/_1aKXJovK1_4/TF6CpBRYvzI/AAAAAAAAACs/d74UmWNlQEw/s700/Jason%20Derulo%20(2).jpg"></a><a class="picasa-image-link" title="View this image on Picasa" href="http://picasaweb.google.com/115831860493142173853/JasonDerulo#5502979435920932658">Jason Derulo (2).jpg</a></li><li><a rel="e3573dee9ca456ec823cfe1b42ee4b92" style="background-image:url('http://lh5.ggpht.com/_1aKXJovK1_4/TF6CoW-ZYZI/AAAAAAAAACo/yoq5xqGI1YE/s125-c/Jason%20Derulo%20(19).jpg');" class="direct-image-link" title="Jason Derulo (19).jpg" href="http://lh5.ggpht.com/_1aKXJovK1_4/TF6CoW-ZYZI/AAAAAAAAACo/yoq5xqGI1YE/s700/Jason%20Derulo%20(19).jpg"></a><a class="picasa-image-link" title="View this image on Picasa" href="http://picasaweb.google.com/115831860493142173853/JasonDerulo#5502979424566993298">Jason Derulo (19).jpg</a></li><li><a rel="e3573dee9ca456ec823cfe1b42ee4b92" style="background-image:url('http://lh5.ggpht.com/_1aKXJovK1_4/TF6Cnt9cMlI/AAAAAAAAACk/iQBGjvMz_eo/s125-c/Jason%20Derulo%20(18).jpg');" class="direct-image-link" title="Jason Derulo (18).jpg" href="http://lh5.ggpht.com/_1aKXJovK1_4/TF6Cnt9cMlI/AAAAAAAAACk/iQBGjvMz_eo/s700/Jason%20Derulo%20(18).jpg"></a><a class="picasa-image-link" title="View this image on Picasa" href="http://picasaweb.google.com/115831860493142173853/JasonDerulo#5502979413557129810">Jason Derulo (18).jpg</a></li><li><a rel="e3573dee9ca456ec823cfe1b42ee4b92" style="background-image:url('http://lh6.ggpht.com/_1aKXJovK1_4/TF6Cm0ZQxuI/AAAAAAAAACg/XxegQM_Mo7Y/s125-c/Jason%20Derulo%20(17).jpg');" class="direct-image-link" title="Jason Derulo (17).jpg" href="http://lh6.ggpht.com/_1aKXJovK1_4/TF6Cm0ZQxuI/AAAAAAAAACg/XxegQM_Mo7Y/s700/Jason%20Derulo%20(17).jpg"></a><a class="picasa-image-link" title="View this image on Picasa" href="http://picasaweb.google.com/115831860493142173853/JasonDerulo#5502979398104565474">Jason Derulo (17).jpg</a></li><li><a rel="e3573dee9ca456ec823cfe1b42ee4b92" style="background-image:url('http://lh3.ggpht.com/_1aKXJovK1_4/TF6CmHeEHGI/AAAAAAAAACc/1wXb2jUZhBo/s125-c/Jason%20Derulo%20(16).jpg');" class="direct-image-link" title="Jason Derulo (16).jpg" href="http://lh3.ggpht.com/_1aKXJovK1_4/TF6CmHeEHGI/AAAAAAAAACc/1wXb2jUZhBo/s700/Jason%20Derulo%20(16).jpg"></a><a class="picasa-image-link" title="View this image on Picasa" href="http://picasaweb.google.com/115831860493142173853/JasonDerulo#5502979386045111394">Jason Derulo (16).jpg</a></li><li><a rel="e3573dee9ca456ec823cfe1b42ee4b92" style="background-image:url('http://lh6.ggpht.com/_1aKXJovK1_4/TF6ClSKaLiI/AAAAAAAAACY/QOjxVnhcWu4/s125-c/Jason%20Derulo%20(15).jpg');" class="direct-image-link" title="Jason Derulo (15).jpg" href="http://lh6.ggpht.com/_1aKXJovK1_4/TF6ClSKaLiI/AAAAAAAAACY/QOjxVnhcWu4/s700/Jason%20Derulo%20(15).jpg"></a><a class="picasa-image-link" title="View this image on Picasa" href="http://picasaweb.google.com/115831860493142173853/JasonDerulo#5502979371735592482">Jason Derulo (15).jpg</a></li><li><a rel="e3573dee9ca456ec823cfe1b42ee4b92" style="background-image:url('http://lh4.ggpht.com/_1aKXJovK1_4/TF6Ck_2aauI/AAAAAAAAACU/Fj9WUS9s6sc/s125-c/Jason%20Derulo%20(14).jpg');" class="direct-image-link" title="Jason Derulo (14).jpg" href="http://lh4.ggpht.com/_1aKXJovK1_4/TF6Ck_2aauI/AAAAAAAAACU/Fj9WUS9s6sc/s700/Jason%20Derulo%20(14).jpg"></a><a class="picasa-image-link" title="View this image on Picasa" href="http://picasaweb.google.com/115831860493142173853/JasonDerulo#5502979366819883746">Jason Derulo (14).jpg</a></li><li><a rel="e3573dee9ca456ec823cfe1b42ee4b92" style="background-image:url('http://lh6.ggpht.com/_1aKXJovK1_4/TF6Cj5R4rGI/AAAAAAAAACQ/c9iT6XoJLr0/s125-c/Jason%20Derulo%20(13).jpg');" class="direct-image-link" title="Jason Derulo (13).jpg" href="http://lh6.ggpht.com/_1aKXJovK1_4/TF6Cj5R4rGI/AAAAAAAAACQ/c9iT6XoJLr0/s700/Jason%20Derulo%20(13).jpg"></a><a class="picasa-image-link" title="View this image on Picasa" href="http://picasaweb.google.com/115831860493142173853/JasonDerulo#5502979347876195426">Jason Derulo (13).jpg</a></li><li><a rel="e3573dee9ca456ec823cfe1b42ee4b92" style="background-image:url('http://lh4.ggpht.com/_1aKXJovK1_4/TF6CjTT0f1I/AAAAAAAAACM/p7r2Ujqj89k/s125-c/Jason%20Derulo%20(12).jpg');" class="direct-image-link" title="Jason Derulo (12).jpg" href="http://lh4.ggpht.com/_1aKXJovK1_4/TF6CjTT0f1I/AAAAAAAAACM/p7r2Ujqj89k/s700/Jason%20Derulo%20(12).jpg"></a><a class="picasa-image-link" title="View this image on Picasa" href="http://picasaweb.google.com/115831860493142173853/JasonDerulo#5502979337683763026">Jason Derulo (12).jpg</a></li><li><a rel="e3573dee9ca456ec823cfe1b42ee4b92" style="background-image:url('http://lh5.ggpht.com/_1aKXJovK1_4/TF6Ciq60oGI/AAAAAAAAACI/QX-J00EGRN8/s125-c/Jason%20Derulo%20(11).jpg');" class="direct-image-link" title="Jason Derulo (11).jpg" href="http://lh5.ggpht.com/_1aKXJovK1_4/TF6Ciq60oGI/AAAAAAAAACI/QX-J00EGRN8/s700/Jason%20Derulo%20(11).jpg"></a><a class="picasa-image-link" title="View this image on Picasa" href="http://picasaweb.google.com/115831860493142173853/JasonDerulo#5502979326841495650">Jason Derulo (11).jpg</a></li><li><a rel="e3573dee9ca456ec823cfe1b42ee4b92" style="background-image:url('http://lh6.ggpht.com/_1aKXJovK1_4/TF6Ch-mAPoI/AAAAAAAAACE/6T9eMJ-1bdU/s125-c/Jason%20Derulo%20(10).jpg');" class="direct-image-link" title="Jason Derulo (10).jpg" href="http://lh6.ggpht.com/_1aKXJovK1_4/TF6Ch-mAPoI/AAAAAAAAACE/6T9eMJ-1bdU/s700/Jason%20Derulo%20(10).jpg"></a><a class="picasa-image-link" title="View this image on Picasa" href="http://picasaweb.google.com/115831860493142173853/JasonDerulo#5502979314943016578">Jason Derulo (10).jpg</a></li><li><a rel="e3573dee9ca456ec823cfe1b42ee4b92" style="background-image:url('http://lh6.ggpht.com/_1aKXJovK1_4/TF6ChVn62yI/AAAAAAAAACA/a8d3yhXFas0/s125-c/Jason%20Derulo%20(1).jpg');" class="direct-image-link" title="Jason Derulo (1).jpg" href="http://lh6.ggpht.com/_1aKXJovK1_4/TF6ChVn62yI/AAAAAAAAACA/a8d3yhXFas0/s700/Jason%20Derulo%20(1).jpg"></a><a class="picasa-image-link" title="View this image on Picasa" href="http://picasaweb.google.com/115831860493142173853/JasonDerulo#5502979303945198370">Jason Derulo (1).jpg</a></li></ul></div><div class="clear"></div></div>
<p>Cool eh? Try hovering or clicking on an image. Dig into my <a href="view-source:http://content.manmohanjit.com/themes/default/normal/files/script.js">source code</a> to get more information. All done with CSS3 and some Javascript(or shall I say jQuery). Sorry IE&#8217;ers, no support for y&#8217;all but it works great on IE7 and above.</p>
<p>About the Twitter integration, I don&#8217;t think its going to be possible. Various reasons.</p>
]]></content:encoded>
			<wfw:commentRss>http://manmohanjit.com/2010/08/24/picasa-integration-check-twitter-integration-maybe-not/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Lady Java Song, a song for geeks</title>
		<link>http://manmohanjit.com/2010/08/21/lady-java-song-a-song-for-geeks/</link>
		<comments>http://manmohanjit.com/2010/08/21/lady-java-song-a-song-for-geeks/#comments</comments>
		<pubDate>Sat, 21 Aug 2010 19:48:21 +0000</pubDate>
		<dc:creator>Manmohanjit Singh</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Geek]]></category>
		<category><![CDATA[Lady Gaga]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://manmohanjit.com/?p=1232</guid>
		<description><![CDATA[I had a good laugh, you will too . It&#8217;s actually the teaser video for JavaZone 2010 featuring Jenny Skavlan.]]></description>
			<content:encoded><![CDATA[<p>I had a good laugh, you will too <img src='http://manmohanjit.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> . It&#8217;s actually the teaser video for JavaZone 2010 featuring Jenny Skavlan.</p>
<p><iframe class="youtube-player" type="text/html" width="710" height="424" src="http://www.youtube.com/embed/1JZnj4eNHXE?hl=en_US" frameborder="0"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://manmohanjit.com/2010/08/21/lady-java-song-a-song-for-geeks/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
