<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Abhishek Gupta</title>
	<atom:link href="http://abhishekin.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://abhishekin.wordpress.com</link>
	<description>The Sun won't set at NIT Durgapur !</description>
	<lastBuildDate>Wed, 29 Jun 2011 05:33:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='abhishekin.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Abhishek Gupta</title>
		<link>http://abhishekin.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://abhishekin.wordpress.com/osd.xml" title="Abhishek Gupta" />
	<atom:link rel='hub' href='http://abhishekin.wordpress.com/?pushpress=hub'/>
		<item>
		<title>How To Convert Video File in Linux through command line</title>
		<link>http://abhishekin.wordpress.com/2009/08/30/how-to-convert-video-file-in-linux-through-command-line/</link>
		<comments>http://abhishekin.wordpress.com/2009/08/30/how-to-convert-video-file-in-linux-through-command-line/#comments</comments>
		<pubDate>Sun, 30 Aug 2009 13:36:53 +0000</pubDate>
		<dc:creator>abhiitechie</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[3gp]]></category>
		<category><![CDATA[avi]]></category>
		<category><![CDATA[command]]></category>
		<category><![CDATA[convert]]></category>
		<category><![CDATA[ffmpeg]]></category>
		<category><![CDATA[line]]></category>
		<category><![CDATA[mp4]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://abhishekin.wordpress.com/?p=134</guid>
		<description><![CDATA[Get the ffmpeg package first from the repo by sudo apt-get install ffmpeg Then follow the following command lines to get going 3gp to avi : ffmpeg -i source.3gp -f avi -vcodec xvid -acodec mp3 -ar 22050 destination.avi flv to 3gp : ffmpeg -i source.flv -s 176×144 -vcodec h263 -r 25 -b 200 -ab 64 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=abhishekin.wordpress.com&amp;blog=7498267&amp;post=134&amp;subd=abhishekin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="font-size:11px;line-height:1.4em;margin:0 0 18px;padding:0 24px 0 0;">Get the ffmpeg package first from the repo by</p>
<p style="font-size:11px;line-height:1.4em;margin:0 0 18px;padding:0 24px 0 0;"><strong>sudo apt-get install ffmpeg</strong></p>
<p style="font-size:11px;line-height:1.4em;margin:0 0 18px;padding:0 24px 0 0;">Then follow the following command lines to get going</p>
<p style="font-size:11px;line-height:1.4em;margin:0 0 18px;padding:0 24px 0 0;"><br style="font-size:11px;line-height:1.4em;margin:0;padding:0;" /><strong>3gp to avi :</strong> ffmpeg -i source.3gp -f avi -vcodec xvid -acodec mp3 -ar 22050 destination.avi</p>
<p style="font-size:11px;line-height:1.4em;margin:0 0 18px;padding:0 24px 0 0;"><strong>flv to 3gp</strong> : ffmpeg -i source.flv -s 176×144 -vcodec h263 -r 25 -b 200 -ab 64 -acodec mp3 -ac 1 -ar 8000 destination.3gp</p>
<p style="font-size:11px;line-height:1.4em;margin:0 0 18px;padding:0 24px 0 0;"><strong>flv to mp4</strong> : ffmpeg -i source.flv -vcodec h264 -r 25 -b 200 -ab 128 -acodec mp3 -ac 2 -ar 44100 destination.mp3</p>
<p style="font-size:11px;line-height:1.4em;margin:0 0 18px;padding:0 24px 0 0;"><strong>avi to mp4</strong> : ffmpeg -i source.avi -f psp -r 29.97 -b 768k -ar 24000 -ab 64k -s 320×240 destination.mp4</p>
<p style="font-size:11px;line-height:1.4em;margin:0 0 18px;padding:0 24px 0 0;"><strong>mp4 to 3gp</strong> : ffmpeg -i source.mp4 -s 176×144 -vcodec h263 -r 25 -b 12200 -ab 12200 -ac 1 -ar 8000 destination.3gp</p>
<p style="font-size:11px;line-height:1.4em;margin:0 0 18px;padding:0 24px 0 0;"><strong>avi to 3gp</strong> : ffmpeg -i source.avi-s qcif -vcodec h263 -acodec mp3 -ac 1 -ar 8000 -r 25 -ab 32 -y destination.3gp</p>
<p style="font-size:11px;line-height:1.4em;margin:0 0 18px;padding:0 24px 0 0;"><strong>mpg to 3gp</strong> : ffmpeg -i source.mpg -s qcif -vcodec h263 -acodec mp3 -ac 1 -ar 8000 -ab 32 -y destination.3gp</p>
<p style="font-size:11px;line-height:1.4em;margin:0 0 18px;padding:0 24px 0 0;">Enjoy !</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/abhishekin.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/abhishekin.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/abhishekin.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/abhishekin.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/abhishekin.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/abhishekin.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/abhishekin.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/abhishekin.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/abhishekin.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/abhishekin.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/abhishekin.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/abhishekin.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/abhishekin.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/abhishekin.wordpress.com/134/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=abhishekin.wordpress.com&amp;blog=7498267&amp;post=134&amp;subd=abhishekin&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://abhishekin.wordpress.com/2009/08/30/how-to-convert-video-file-in-linux-through-command-line/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/87b42155de45c3b019a8196b3669bb50?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Nishu</media:title>
		</media:content>
	</item>
		<item>
		<title>All about QFlicks</title>
		<link>http://abhishekin.wordpress.com/2009/08/16/everything-about-qflicks/</link>
		<comments>http://abhishekin.wordpress.com/2009/08/16/everything-about-qflicks/#comments</comments>
		<pubDate>Sun, 16 Aug 2009 05:26:11 +0000</pubDate>
		<dc:creator>abhiitechie</dc:creator>
				<category><![CDATA[mysql]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[abhishek]]></category>
		<category><![CDATA[catalogue]]></category>
		<category><![CDATA[downloader]]></category>
		<category><![CDATA[gupta]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[link]]></category>
		<category><![CDATA[manager]]></category>
		<category><![CDATA[movie]]></category>
		<category><![CDATA[nit]]></category>
		<category><![CDATA[pyqt]]></category>
		<category><![CDATA[qflicks]]></category>
		<category><![CDATA[qt]]></category>
		<category><![CDATA[sourceforge]]></category>
		<category><![CDATA[subtitle]]></category>
		<category><![CDATA[svn]]></category>

		<guid isPermaLink="false">http://abhishekin.wordpress.com/?p=124</guid>
		<description><![CDATA[Hi people , this post is all about a project which I started roughly a month ago by the name of &#8220;QFlicks&#8221;. It was named so because the graphics library I chose to use is the popular Ot and the  application is a movie collection cataloger which scans the disk for media files and gets [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=abhishekin.wordpress.com&amp;blog=7498267&amp;post=124&amp;subd=abhishekin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hi people , this post is all about a project which I started roughly a month ago by the name of &#8220;QFlicks&#8221;. It was named so because the graphics library I chose to use is the popular <strong>Ot</strong> and the  application is a <strong>movie collection cataloger</strong> which scans the disk for media files and gets film informations (duration, plot, cover ,rating ,poster cover , casts  etc) from the popular <strong>Amazon&#8217;s</strong> <a href="http://imdb.com">http://imdb.com</a> or the Internet Movie Database . It also allows the user to filter his possessions based on movie titles,genre,ratings  , seen or unseen etc.</p>
<p>The later versions of the software will witness subtitle downloader extention and many more.</p>
<p><strong>Here are the basic features which I plan to inmplement in version 1.0</strong></p>
<ul>
<li>Scanning user-chosen directories to find media files (films in a first time)</li>
</ul>
<p><strong>Status </strong>: Done</p>
<p><strong>How :</strong> Used a <strong>recursive OS walk algorithm</strong> to extract movies from all folders , sub-folders , sub-sub folders etc.</p>
<ul>
<li>Extracting film titles from file names (tough one if files are not properly named)</li>
</ul>
<p><strong>Status:</strong> Done</p>
<p><strong>How:</strong> Using <strong>Neural Network algorithms</strong> and and basic <strong>Regular Expression.</strong></p>
<ul>
<li>Create a list of these names in a database get films information (duration, plot, poster cover , rating , casts etc) from imdb</li>
</ul>
<p><strong>Status :</strong> Done</p>
<p><strong>How:</strong> Used a library named<strong> IMDBPy</strong> as imdb.com does not provide and <strong>API</strong> (Another example of Amazon&#8217;s miserness). The database used is MySQL which experienced developers feel is a wrong choice for desktop.</p>
<ul>
<li>display films list and information of the selected one</li>
</ul>
<p><strong>Status:</strong> Done</p>
<ul>
<li>basic settings handling</li>
</ul>
<p><strong>Status:</strong> More or less done until someone comes out with bugs</p>
<ul>
<li> Filtering based on genre , title ,rating seen or unseen etc.</li>
</ul>
<p><strong>Status:</strong> Not Done</p>
<p><strong>To Do:</strong> Learn multiple substring search in SQL ( SQL sucks , I hate it)</p>
<ul>
<li>Clean and simple gui</li>
</ul>
<p><strong>Status :</strong> The Gui is simple but not clean and hangs as I have not implemented the <strong>Multi-threading</strong></p>
<p><strong>To Do : </strong>Learn<strong> Multi-threading </strong>and make the network call fuctions run in <strong>separate threads</strong> in the background and also need to implement <strong>customized Progress Bars </strong>for UI</p>
<p><strong>Plugins (towards upper versions):</strong></p>
<ul>
<li>subtitle downloader</li>
<li>playlist manager</li>
<li>automatic new files inclusion (directory survey)</li>
<li>music album and video series handling</li>
</ul>
<p><strong>Tools Used:</strong></p>
<ul>
<li>Python as the Programming Language</li>
<li>Qt as Graphics Library</li>
<li>QtDesigner for the Gui</li>
<li>SVN as versioning program</li>
<li>MySQL as database software</li>
<li>IMDBPy as the library</li>
<li>GPLv3 licence</li>
</ul>
<p><strong> </strong></p>
<p><strong> </strong></p>
<div><span style="font-family:arial;"><span style="border-collapse:collapse;line-height:normal;white-space:pre-wrap;">Here is the screen-shot of my Work :</span></span></div>
<div><span style="font-family:arial;"><span style="border-collapse:collapse;line-height:normal;white-space:pre-wrap;"><img class="aligncenter size-full wp-image-126" title="Screenshot" src="http://abhishekin.files.wordpress.com/2009/08/screenshot.png?w=1024&#038;h=640" alt="Screenshot" width="1024" height="640" /></span></span></div>
<div><span style="font-family:arial;line-height:normal;border-collapse:collapse;white-space:pre-wrap;"><strong>The sourceforge Link for the project is :</strong></span></div>
<div><span style="font-family:arial;line-height:normal;border-collapse:collapse;white-space:pre-wrap;"><a href="http://sourceforge.net/projects/qflicks/">http://sourceforge.net/projects/qflicks/</a></span></div>
<div><span style="font-family:arial;line-height:normal;border-collapse:collapse;white-space:pre-wrap;"></p>
<p></span></div>
<div><span style="font-family:arial;line-height:normal;border-collapse:collapse;white-space:pre-wrap;"><strong>Get the source from the Repository :</strong></span></div>
<div><span style="font-family:arial;line-height:normal;border-collapse:collapse;white-space:pre-wrap;">svn co https://qflicks.svn.sourceforge.net/svnroot/qflicks qflicks</span></div>
<div><span style="font-family:arial;line-height:normal;border-collapse:collapse;white-space:pre-wrap;"></p>
<p></span></div>
<div><span style="font-family:arial;line-height:normal;border-collapse:collapse;white-space:pre-wrap;"><strong>Current OS Support :</strong></span></div>
<div><span style="font-family:arial;line-height:normal;border-collapse:collapse;white-space:pre-wrap;">Gnu/Linux with Qt &gt;= 4.5 and MySQL &gt;= 5.0</span></div>
<div><span style="font-family:arial;line-height:normal;border-collapse:collapse;white-space:pre-wrap;"></p>
<p></span></div>
<div><span style="font-family:arial;line-height:normal;border-collapse:collapse;white-space:pre-wrap;">Newbies who don&#8217;t know how to use SVN or are facing problems with code can mail me at</span></div>
<div><strong>mailto: abhii.cse.nitdgp@gmail.com</strong></div>
<div><strong><br />
</strong></div>
<div>The project is likely to see its first release on 24th of August 2009</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/abhishekin.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/abhishekin.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/abhishekin.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/abhishekin.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/abhishekin.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/abhishekin.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/abhishekin.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/abhishekin.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/abhishekin.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/abhishekin.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/abhishekin.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/abhishekin.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/abhishekin.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/abhishekin.wordpress.com/124/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=abhishekin.wordpress.com&amp;blog=7498267&amp;post=124&amp;subd=abhishekin&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://abhishekin.wordpress.com/2009/08/16/everything-about-qflicks/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/87b42155de45c3b019a8196b3669bb50?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Nishu</media:title>
		</media:content>

		<media:content url="http://abhishekin.files.wordpress.com/2009/08/screenshot.png" medium="image">
			<media:title type="html">Screenshot</media:title>
		</media:content>
	</item>
		<item>
		<title>&#8220;Kya Apke toothpaste me Namak Hai ?&#8221;- I love facebook</title>
		<link>http://abhishekin.wordpress.com/2009/08/09/kya-apke-toothpaste-me-namak-hai-i-love-facebook/</link>
		<comments>http://abhishekin.wordpress.com/2009/08/09/kya-apke-toothpaste-me-namak-hai-i-love-facebook/#comments</comments>
		<pubDate>Sun, 09 Aug 2009 19:48:26 +0000</pubDate>
		<dc:creator>abhiitechie</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[ads]]></category>
		<category><![CDATA[advertisment]]></category>
		<category><![CDATA[ever]]></category>
		<category><![CDATA[television]]></category>
		<category><![CDATA[worst]]></category>

		<guid isPermaLink="false">http://abhishekin.wordpress.com/?p=120</guid>
		<description><![CDATA[I was onto my usual facebook quizzes when my eyes fell on my friend Govind&#8217;s status which asked &#8220;Kya Apke Toothpaste me namak hai ??&#8221; This was enough to provoke something like this (see below) with the help of some more contributors namely my friends Alok Sharma and Piu Chatterjee . Here is the list [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=abhishekin.wordpress.com&amp;blog=7498267&amp;post=120&amp;subd=abhishekin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I was onto my usual facebook quizzes when my eyes fell on my friend Govind&#8217;s status which asked</p>
<p>&#8220;Kya Apke Toothpaste me namak hai ??&#8221;</p>
<p>This was enough to provoke something like this (see below) with the help of some more contributors namely my friends Alok Sharma and Piu Chatterjee .</p>
<p>Here is the list of the worst television advertisements ever&#8230;&#8230;.</p>
<h3 style="font-size:13px;color:#333333;font-weight:normal;margin:0;padding:0;"><span style="color:#444444;font-weight:bold;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;" href="http://www.facebook.com/govind.d?ref=mf">Govind Daga</a> </span>Kya aapke toothpaste mein namak hai!!??</h3>
<div style="float:left;">
<div style="position:relative;float:left;clear:both;width:360px;height:auto;">
<div id="comment_5368018007836816212_114665228615_3781624" style="background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#eceff5;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#e5eaf1;clear:left;float:none;margin-bottom:2px;width:350px;background-position:initial initial;padding:6px 4px 0 6px;">
<div style="text-align:left;padding-right:2px;padding-bottom:4px;float:left;height:35px;width:35px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Abhishek Gupta" href="http://www.facebook.com/profile.php?id=611394693"><span style="display:block;background-color:#c4cde0;position:relative;width:32px;height:32px;"><img style="position:absolute;top:-50px;left:-50px;border:0 initial initial;" src="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" alt="" /></span></a></div>
<div id="comment_box_5368018007836816212_114665228615_3781624" style="float:left;width:311px;">
<div style="padding:0 4px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;font-weight:bold;" href="http://www.facebook.com/profile.php?id=611394693">Abhishek Gupta</a></p>
<div id="text_expose_id_4a7f23bf2bf0d6373537560" style="display:inline;padding-left:.4em;">nahi</div>
</div>
<div style="margin-left:4px;font-size:11px;color:#777777;padding-top:2px;padding-bottom:2px;">about an hour ago · <a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Click here to remove this comment">Delete</a></div>
</div>
</div>
<div id="comment_5368018007836816212_114665228615_3781742" style="background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#eceff5;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#e5eaf1;clear:left;float:none;margin-bottom:2px;width:350px;background-position:initial initial;padding:6px 4px 0 6px;">
<div style="text-align:left;padding-right:2px;padding-bottom:4px;float:left;height:35px;width:35px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Alok Sharma" href="http://www.facebook.com/profile.php?id=571725198"><span style="display:block;background-color:#c4cde0;position:relative;width:32px;height:32px;"><img style="width:32px;height:32px;border:0 initial initial;" src="http://profile.ak.fbcdn.net/v229/114/123/q571725198_2405.jpg" alt="Alok Sharma" /><img style="position:absolute;top:-50px;left:-50px;border:0 initial initial;" src="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" alt="" /></span></a></div>
<div id="comment_box_5368018007836816212_114665228615_3781742" style="float:left;width:311px;">
<div style="padding:0 4px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;font-weight:bold;" href="http://www.facebook.com/profile.php?id=571725198">Alok Sharma</a></p>
<div id="text_expose_id_4a7f23bf2c6284333818887" style="display:inline;padding-left:.4em;">Bloody ghatiya advertisement <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </div>
</div>
<div style="margin-left:4px;font-size:11px;color:#777777;padding-top:2px;padding-bottom:2px;">about an hour ago</div>
</div>
</div>
<div id="comment_5368018007836816212_114665228615_3781779" style="background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#eceff5;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#e5eaf1;clear:left;float:none;margin-bottom:2px;width:350px;background-position:initial initial;padding:6px 4px 0 6px;">
<div style="text-align:left;padding-right:2px;padding-bottom:4px;float:left;height:35px;width:35px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Richi Parasrampuria" href="http://www.facebook.com/richi.hunnybunny"><span style="display:block;background-color:#c4cde0;position:relative;width:32px;height:32px;"><img style="width:32px;height:32px;border:0 initial initial;" src="http://static.ak.fbcdn.net/pics/q_silhouette.gif" alt="Richi Parasrampuria" /><img style="position:absolute;top:-50px;left:-50px;border:0 initial initial;" src="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" alt="" /></span></a></div>
<div id="comment_box_5368018007836816212_114665228615_3781779" style="float:left;width:311px;">
<div style="padding:0 4px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;font-weight:bold;" href="http://www.facebook.com/richi.hunnybunny">Richi Parasrampuria</a></p>
<div id="text_expose_id_4a7f23bf2c9ee2d34796536" style="display:inline;padding-left:.4em;">Naa.. Mere toothpaste me bi namak nai hai.. <img src='http://s2.wp.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </div>
</div>
<div style="margin-left:4px;font-size:11px;color:#777777;padding-top:2px;padding-bottom:2px;">about an hour ago</div>
</div>
</div>
<div id="comment_5368018007836816212_114665228615_3781912" style="background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#eceff5;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#e5eaf1;clear:left;float:none;margin-bottom:2px;width:350px;background-position:initial initial;padding:6px 4px 0 6px;">
<div style="text-align:left;padding-right:2px;padding-bottom:4px;float:left;height:35px;width:35px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Govind Daga" href="http://www.facebook.com/govind.d"><span style="display:block;background-color:#c4cde0;position:relative;width:32px;height:32px;"><img style="width:32px;height:32px;border:0 initial initial;" src="http://profile.ak.fbcdn.net/v228/1886/87/q708791097_9452.jpg" alt="Govind Daga" /><img style="position:absolute;top:-50px;left:-50px;border:0 initial initial;" src="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" alt="" /></span></a></div>
<div id="comment_box_5368018007836816212_114665228615_3781912" style="float:left;width:311px;">
<div style="padding:0 4px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;font-weight:bold;" href="http://www.facebook.com/govind.d">Govind Daga</a></p>
<div id="text_expose_id_4a7f23bf2cff36086197167" style="display:inline;padding-left:.4em;">@ Abhishek : Canteen theke noon ne ar tooth paste e diye de.. Same effect, provided you use a toothpaste&#8230;</p>
<p>@ Alok : You cant use &#8221; <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  &#8221; smiley if you dont have namak in your toothpaste&#8230; Haan, advertisement to amazingly ghatiya hai&#8230; lolz. Makes me go ROFL whenever I see it..</p>
<p>@ Richi : The salt gods are going to curse your teeth~!</p></div>
</div>
<div style="margin-left:4px;font-size:11px;color:#777777;padding-top:2px;padding-bottom:2px;">about an hour ago</div>
</div>
</div>
<div id="comment_5368018007836816212_114665228615_3781984" style="background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#eceff5;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#e5eaf1;clear:left;float:none;margin-bottom:2px;width:350px;background-position:initial initial;padding:6px 4px 0 6px;">
<div style="text-align:left;padding-right:2px;padding-bottom:4px;float:left;height:35px;width:35px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Alok Sharma" href="http://www.facebook.com/profile.php?id=571725198"><span style="display:block;background-color:#c4cde0;position:relative;width:32px;height:32px;"><img style="width:32px;height:32px;border:0 initial initial;" src="http://profile.ak.fbcdn.net/v229/114/123/q571725198_2405.jpg" alt="Alok Sharma" /><img style="position:absolute;top:-50px;left:-50px;border:0 initial initial;" src="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" alt="" /></span></a></div>
<div id="comment_box_5368018007836816212_114665228615_3781984" style="float:left;width:311px;">
<div style="padding:0 4px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;font-weight:bold;" href="http://www.facebook.com/profile.php?id=571725198">Alok Sharma</a></p>
<div id="text_expose_id_4a7f23bf2d5055353535293" style="display:inline;padding-left:.4em;">The ad creates such hype&#8230;!u see&#8230;if u eat healthy everyday&#8230;stay healthy&#8230;wtf toothpaste mein namak&#8230;do u think our ancestors had namak in their toothpastes??or moreover&#8230;toothpaste bhi tha kya&#8230; <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  &#8230;&#8230;!!</div>
</div>
<div style="margin-left:4px;font-size:11px;color:#777777;padding-top:2px;padding-bottom:2px;">about an hour ago</div>
</div>
</div>
<div id="comment_5368018007836816212_114665228615_3782155" style="background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#eceff5;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#e5eaf1;clear:left;float:none;margin-bottom:2px;width:350px;background-position:initial initial;padding:6px 4px 0 6px;">
<div style="text-align:left;padding-right:2px;padding-bottom:4px;float:left;height:35px;width:35px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Govind Daga" href="http://www.facebook.com/govind.d"><span style="display:block;background-color:#c4cde0;position:relative;width:32px;height:32px;"><img style="width:32px;height:32px;border:0 initial initial;" src="http://profile.ak.fbcdn.net/v228/1886/87/q708791097_9452.jpg" alt="Govind Daga" /><img style="position:absolute;top:-50px;left:-50px;border:0 initial initial;" src="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" alt="" /></span></a></div>
<div id="comment_box_5368018007836816212_114665228615_3782155" style="float:left;width:311px;">
<div style="padding:0 4px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;font-weight:bold;" href="http://www.facebook.com/govind.d">Govind Daga</a></p>
<div id="text_expose_id_4a7f23bf2d9d33149189204" style="display:inline;padding-left:.4em;">+ it makes you think that if you do &#8220;aaaah&#8221; with your face on the cheek then a beautiful girl might come into the room or wherever you are&#8230;!! Chor log!!</div>
</div>
<div style="margin-left:4px;font-size:11px;color:#777777;padding-top:2px;padding-bottom:2px;">about an hour ago</div>
</div>
</div>
<div id="comment_5368018007836816212_114665228615_3782188" style="background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#eceff5;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#e5eaf1;clear:left;float:none;margin-bottom:2px;width:350px;background-position:initial initial;padding:6px 4px 0 6px;">
<div style="text-align:left;padding-right:2px;padding-bottom:4px;float:left;height:35px;width:35px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Abhishek Gupta" href="http://www.facebook.com/profile.php?id=611394693"><span style="display:block;background-color:#c4cde0;position:relative;width:32px;height:32px;"><img style="width:32px;height:32px;border:0 initial initial;" src="http://profile.ak.fbcdn.net/v224/959/36/q611394693_4732.jpg" alt="Abhishek Gupta" /><img style="position:absolute;top:-50px;left:-50px;border:0 initial initial;" src="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" alt="" /></span></a></div>
<div id="comment_box_5368018007836816212_114665228615_3782188" style="float:left;width:311px;">
<div style="padding:0 4px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;font-weight:bold;" href="http://www.facebook.com/profile.php?id=611394693">Abhishek Gupta</a></p>
<div id="text_expose_id_4a7f23bf2e1971379475781" style="display:inline;padding-left:.4em;">kya aapke toothpaste me namak hai???!!!</p>
<p>few months later&#8230;<br />
kya aapke toothpaste me kaali mirch hai???</p></div>
</div>
<div style="margin-left:4px;font-size:11px;color:#777777;padding-top:2px;padding-bottom:2px;">about an hour ago · <a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Click here to remove this comment">Delete</a></div>
</div>
</div>
<div id="comment_5368018007836816212_114665228615_3782223" style="background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#eceff5;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#e5eaf1;clear:left;float:none;margin-bottom:2px;width:350px;background-position:initial initial;padding:6px 4px 0 6px;">
<div style="text-align:left;padding-right:2px;padding-bottom:4px;float:left;height:35px;width:35px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Abhishek Gupta" href="http://www.facebook.com/profile.php?id=611394693"><span style="display:block;background-color:#c4cde0;position:relative;width:32px;height:32px;"><img style="width:32px;height:32px;border:0 initial initial;" src="http://profile.ak.fbcdn.net/v224/959/36/q611394693_4732.jpg" alt="Abhishek Gupta" /><img style="position:absolute;top:-50px;left:-50px;border:0 initial initial;" src="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" alt="" /></span></a></div>
<div id="comment_box_5368018007836816212_114665228615_3782223" style="float:left;width:311px;">
<div style="padding:0 4px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;font-weight:bold;" href="http://www.facebook.com/profile.php?id=611394693">Abhishek Gupta</a></p>
<div id="text_expose_id_4a7f23bf2e96b4978785002" style="display:inline;padding-left:.4em;">Student sleeping. Wakes up with a start. Cries out loudly,<br />
Grandmother enters.<br />
Granny : &#8220;Beta kya hua?? Koi bura sapna dekha??&#8221;Kid: Haan daadi, maine dekha, ke mere daaton main bahut dard hain aur main exam nahi de pa raha hoon&#8230;.&#8221;<br />
Granny : Beta, pareshan mat ho. Hamare desh main sadiyo se namak ki madad se daaton ka khayal rakha jaata hain. Tu<br />
bhi namak se apne daat saaaf kar, tujhe kabhi dard nahi hoga</div>
</div>
<div style="margin-left:4px;font-size:11px;color:#777777;padding-top:2px;padding-bottom:2px;">about an hour ago · <a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Click here to remove this comment">Delete</a></div>
</div>
</div>
<div id="comment_5368018007836816212_114665228615_3782231" style="background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#eceff5;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#e5eaf1;clear:left;float:none;margin-bottom:2px;width:350px;background-position:initial initial;padding:6px 4px 0 6px;">
<div style="text-align:left;padding-right:2px;padding-bottom:4px;float:left;height:35px;width:35px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Govind Daga" href="http://www.facebook.com/govind.d"><span style="display:block;background-color:#c4cde0;position:relative;width:32px;height:32px;"><img style="width:32px;height:32px;border:0 initial initial;" src="http://profile.ak.fbcdn.net/v228/1886/87/q708791097_9452.jpg" alt="Govind Daga" /><img style="position:absolute;top:-50px;left:-50px;border:0 initial initial;" src="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" alt="" /></span></a></div>
<div id="comment_box_5368018007836816212_114665228615_3782231" style="float:left;width:311px;">
<div style="padding:0 4px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;font-weight:bold;" href="http://www.facebook.com/govind.d">Govind Daga</a></p>
<div id="text_expose_id_4a7f23bf2ee1b3280484609" style="display:inline;padding-left:.4em;">jyada future mein gaya to we would be using Biryani to clean our teeth~!</div>
</div>
<div style="margin-left:4px;font-size:11px;color:#777777;padding-top:2px;padding-bottom:2px;">about an hour ago</div>
</div>
</div>
<div id="comment_5368018007836816212_114665228615_3782293" style="background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#eceff5;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#e5eaf1;clear:left;float:none;margin-bottom:2px;width:350px;background-position:initial initial;padding:6px 4px 0 6px;">
<div style="text-align:left;padding-right:2px;padding-bottom:4px;float:left;height:35px;width:35px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Abhishek Gupta" href="http://www.facebook.com/profile.php?id=611394693"><span style="display:block;background-color:#c4cde0;position:relative;width:32px;height:32px;"><img style="width:32px;height:32px;border:0 initial initial;" src="http://profile.ak.fbcdn.net/v224/959/36/q611394693_4732.jpg" alt="Abhishek Gupta" /><img style="position:absolute;top:-50px;left:-50px;border:0 initial initial;" src="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" alt="" /></span></a></div>
<div id="comment_box_5368018007836816212_114665228615_3782293" style="float:left;width:311px;">
<div style="padding:0 4px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;font-weight:bold;" href="http://www.facebook.com/profile.php?id=611394693">Abhishek Gupta</a></p>
<div id="text_expose_id_4a7f23bf2f49e4163884080" style="display:inline;padding-left:.4em;">tata sky ad&#8230;&#8230;&#8230;ispe laga dala to life jhingalala</div>
</div>
<div style="margin-left:4px;font-size:11px;color:#777777;padding-top:2px;padding-bottom:2px;">about an hour ago · <a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Click here to remove this comment">Delete</a></div>
</div>
</div>
<div id="comment_5368018007836816212_114665228615_3782306" style="background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#eceff5;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#e5eaf1;clear:left;float:none;margin-bottom:2px;width:350px;background-position:initial initial;padding:6px 4px 0 6px;">
<div style="text-align:left;padding-right:2px;padding-bottom:4px;float:left;height:35px;width:35px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Govind Daga" href="http://www.facebook.com/govind.d"><span style="display:block;background-color:#c4cde0;position:relative;width:32px;height:32px;"><img style="width:32px;height:32px;border:0 initial initial;" src="http://profile.ak.fbcdn.net/v228/1886/87/q708791097_9452.jpg" alt="Govind Daga" /><img style="position:absolute;top:-50px;left:-50px;border:0 initial initial;" src="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" alt="" /></span></a></div>
<div id="comment_box_5368018007836816212_114665228615_3782306" style="float:left;width:311px;">
<div style="padding:0 4px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;font-weight:bold;" href="http://www.facebook.com/govind.d">Govind Daga</a></p>
<div id="text_expose_id_4a7f23bf2f9b66a50587601" style="display:inline;padding-left:.4em;">Plane scene..<br />
Passenger has something that is too much for his gums. Cries out loudly.<br />
A *very pretty lady* comes in with a mic andh a camera crew.</p>
<p>Lady: Kya aapke masooron mein dard hai?<span>&#8230; <span style="background-image:url('http://static.ak.fbcdn.net/rsrc.php/zACDD/hash/1n3y8ict.gif');background-repeat:no-repeat;background-attachment:initial;background-color:initial;font-size:9px;font-weight:bold;white-space:nowrap;background-position:100% 1px;padding:0 12px 0 0;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;">Read More</a></span></span></div>
</div>
<div style="margin-left:4px;font-size:11px;color:#777777;padding-top:2px;padding-bottom:2px;">about an hour ago</div>
</div>
</div>
<div id="comment_5368018007836816212_114665228615_3782341" style="background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#eceff5;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#e5eaf1;clear:left;float:none;margin-bottom:2px;width:350px;background-position:initial initial;padding:6px 4px 0 6px;">
<div style="text-align:left;padding-right:2px;padding-bottom:4px;float:left;height:35px;width:35px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Govind Daga" href="http://www.facebook.com/govind.d"><span style="display:block;background-color:#c4cde0;position:relative;width:32px;height:32px;"><img style="width:32px;height:32px;border:0 initial initial;" src="http://profile.ak.fbcdn.net/v228/1886/87/q708791097_9452.jpg" alt="Govind Daga" /><img style="position:absolute;top:-50px;left:-50px;border:0 initial initial;" src="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" alt="" /></span></a></div>
<div id="comment_box_5368018007836816212_114665228615_3782341" style="float:left;width:311px;">
<div style="padding:0 4px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;font-weight:bold;" href="http://www.facebook.com/govind.d">Govind Daga</a></p>
<div id="text_expose_id_4a7f23bf300072361377073" style="display:inline;padding-left:.4em;">Tata sky ads ka mera fav line : &#8220;Blllooodddiii Picckturee Qwallttyy!!&#8221;</div>
</div>
<div style="margin-left:4px;font-size:11px;color:#777777;padding-top:2px;padding-bottom:2px;">about an hour ago</div>
</div>
</div>
<div id="comment_5368018007836816212_114665228615_3782376" style="background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#eceff5;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#e5eaf1;clear:left;float:none;margin-bottom:2px;width:350px;background-position:initial initial;padding:6px 4px 0 6px;">
<div style="text-align:left;padding-right:2px;padding-bottom:4px;float:left;height:35px;width:35px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Abhishek Gupta" href="http://www.facebook.com/profile.php?id=611394693"><span style="display:block;background-color:#c4cde0;position:relative;width:32px;height:32px;"><img style="width:32px;height:32px;border:0 initial initial;" src="http://profile.ak.fbcdn.net/v224/959/36/q611394693_4732.jpg" alt="Abhishek Gupta" /><img style="position:absolute;top:-50px;left:-50px;border:0 initial initial;" src="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" alt="" /></span></a></div>
<div id="comment_box_5368018007836816212_114665228615_3782376" style="float:left;width:311px;">
<div style="padding:0 4px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;font-weight:bold;" href="http://www.facebook.com/profile.php?id=611394693">Abhishek Gupta</a></p>
<div id="text_expose_id_4a7f23bf306b88545900526" style="display:inline;padding-left:.4em;">the thing to be noticed here is that it is a Plane scene &#8230; very inovative</div>
</div>
<div style="margin-left:4px;font-size:11px;color:#777777;padding-top:2px;padding-bottom:2px;">about an hour ago · <a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Click here to remove this comment">Delete</a></div>
</div>
</div>
<div id="comment_5368018007836816212_114665228615_3782397" style="background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#eceff5;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#e5eaf1;clear:left;float:none;margin-bottom:2px;width:350px;background-position:initial initial;padding:6px 4px 0 6px;">
<div style="text-align:left;padding-right:2px;padding-bottom:4px;float:left;height:35px;width:35px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Govind Daga" href="http://www.facebook.com/govind.d"><span style="display:block;background-color:#c4cde0;position:relative;width:32px;height:32px;"><img style="width:32px;height:32px;border:0 initial initial;" src="http://profile.ak.fbcdn.net/v228/1886/87/q708791097_9452.jpg" alt="Govind Daga" /><img style="position:absolute;top:-50px;left:-50px;border:0 initial initial;" src="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" alt="" /></span></a></div>
<div id="comment_box_5368018007836816212_114665228615_3782397" style="float:left;width:311px;">
<div style="padding:0 4px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;font-weight:bold;" href="http://www.facebook.com/govind.d">Govind Daga</a></p>
<div id="text_expose_id_4a7f23bf30b2c9e63316603" style="display:inline;padding-left:.4em;">=))</div>
</div>
<div style="margin-left:4px;font-size:11px;color:#777777;padding-top:2px;padding-bottom:2px;">about an hour ago</div>
</div>
</div>
<div id="comment_5368018007836816212_114665228615_3782455" style="background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#eceff5;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#e5eaf1;clear:left;float:none;margin-bottom:2px;width:350px;background-position:initial initial;padding:6px 4px 0 6px;">
<div style="text-align:left;padding-right:2px;padding-bottom:4px;float:left;height:35px;width:35px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Abhishek Gupta" href="http://www.facebook.com/profile.php?id=611394693"><span style="display:block;background-color:#c4cde0;position:relative;width:32px;height:32px;"><img style="width:32px;height:32px;border:0 initial initial;" src="http://profile.ak.fbcdn.net/v224/959/36/q611394693_4732.jpg" alt="Abhishek Gupta" /><img style="position:absolute;top:-50px;left:-50px;border:0 initial initial;" src="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" alt="" /></span></a></div>
<div id="comment_box_5368018007836816212_114665228615_3782455" style="float:left;width:311px;">
<div style="padding:0 4px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;font-weight:bold;" href="http://www.facebook.com/profile.php?id=611394693">Abhishek Gupta</a></p>
<div id="text_expose_id_4a7f23bf3111a1609739687" style="display:inline;padding-left:.4em;">duniya ke sabhi dentist sirf issi toothpaste ko hi is temaal karte hain &#8220;indian dental assosiation dwara pramanit&#8221;=====pepsodent !!! Is there really an Indian Dental Association</div>
</div>
<div style="margin-left:4px;font-size:11px;color:#777777;padding-top:2px;padding-bottom:2px;">about an hour ago · <a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Click here to remove this comment">Delete</a></div>
</div>
</div>
<div id="comment_5368018007836816212_114665228615_3782520" style="background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#eceff5;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#e5eaf1;clear:left;float:none;margin-bottom:2px;width:350px;background-position:initial initial;padding:6px 4px 0 6px;">
<div style="text-align:left;padding-right:2px;padding-bottom:4px;float:left;height:35px;width:35px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Govind Daga" href="http://www.facebook.com/govind.d"><span style="display:block;background-color:#c4cde0;position:relative;width:32px;height:32px;"><img style="width:32px;height:32px;border:0 initial initial;" src="http://profile.ak.fbcdn.net/v228/1886/87/q708791097_9452.jpg" alt="Govind Daga" /><img style="position:absolute;top:-50px;left:-50px;border:0 initial initial;" src="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" alt="" /></span></a></div>
<div id="comment_box_5368018007836816212_114665228615_3782520" style="float:left;width:311px;">
<div style="padding:0 4px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;font-weight:bold;" href="http://www.facebook.com/govind.d">Govind Daga</a></p>
<div id="text_expose_id_4a7f23bf315770833830287" style="display:inline;padding-left:.4em;">That is indeed a very good question~! And id it is, they discuss about which toothpaste is the best&#8230; Yawn~!</div>
</div>
<div style="margin-left:4px;font-size:11px;color:#777777;padding-top:2px;padding-bottom:2px;">about an hour ago</div>
</div>
</div>
<div id="comment_5368018007836816212_114665228615_3782559" style="background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#eceff5;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#e5eaf1;clear:left;float:none;margin-bottom:2px;width:350px;background-position:initial initial;padding:6px 4px 0 6px;">
<div style="text-align:left;padding-right:2px;padding-bottom:4px;float:left;height:35px;width:35px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Abhishek Gupta" href="http://www.facebook.com/profile.php?id=611394693"><span style="display:block;background-color:#c4cde0;position:relative;width:32px;height:32px;"><img style="width:32px;height:32px;border:0 initial initial;" src="http://profile.ak.fbcdn.net/v224/959/36/q611394693_4732.jpg" alt="Abhishek Gupta" /><img style="position:absolute;top:-50px;left:-50px;border:0 initial initial;" src="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" alt="" /></span></a></div>
<div id="comment_box_5368018007836816212_114665228615_3782559" style="float:left;width:311px;">
<div style="padding:0 4px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;font-weight:bold;" href="http://www.facebook.com/profile.php?id=611394693">Abhishek Gupta</a></p>
<div id="text_expose_id_4a7f23bf31a727933344113" style="display:inline;padding-left:.4em;">Pepsodent Toothpaste :: raat bhar kitaanoo ke sath..dhisum dhisum dhisum dhisum</div>
</div>
<div style="margin-left:4px;font-size:11px;color:#777777;padding-top:2px;padding-bottom:2px;">about an hour ago · <a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Click here to remove this comment">Delete</a></div>
</div>
</div>
<div id="comment_5368018007836816212_114665228615_3782609" style="background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#eceff5;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#e5eaf1;clear:left;float:none;margin-bottom:2px;width:350px;background-position:initial initial;padding:6px 4px 0 6px;">
<div style="text-align:left;padding-right:2px;padding-bottom:4px;float:left;height:35px;width:35px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Govind Daga" href="http://www.facebook.com/govind.d"><span style="display:block;background-color:#c4cde0;position:relative;width:32px;height:32px;"><img style="width:32px;height:32px;border:0 initial initial;" src="http://profile.ak.fbcdn.net/v228/1886/87/q708791097_9452.jpg" alt="Govind Daga" /><img style="position:absolute;top:-50px;left:-50px;border:0 initial initial;" src="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" alt="" /></span></a></div>
<div id="comment_box_5368018007836816212_114665228615_3782609" style="float:left;width:311px;">
<div style="padding:0 4px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;font-weight:bold;" href="http://www.facebook.com/govind.d">Govind Daga</a></p>
<div id="text_expose_id_4a7f23bf31ecf5945512774" style="display:inline;padding-left:.4em;">People may buy these fancy products but for me it is : Dabur Lal Dant Manjan and they always have a free gift..</div>
</div>
<div style="margin-left:4px;font-size:11px;color:#777777;padding-top:2px;padding-bottom:2px;">about an hour ago</div>
</div>
</div>
<div id="comment_5368018007836816212_114665228615_3782650" style="background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#eceff5;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#e5eaf1;clear:left;float:none;margin-bottom:2px;width:350px;background-position:initial initial;padding:6px 4px 0 6px;">
<div style="text-align:left;padding-right:2px;padding-bottom:4px;float:left;height:35px;width:35px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Abhishek Gupta" href="http://www.facebook.com/profile.php?id=611394693"><span style="display:block;background-color:#c4cde0;position:relative;width:32px;height:32px;"><img style="width:32px;height:32px;border:0 initial initial;" src="http://profile.ak.fbcdn.net/v224/959/36/q611394693_4732.jpg" alt="Abhishek Gupta" /><img style="position:absolute;top:-50px;left:-50px;border:0 initial initial;" src="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" alt="" /></span></a></div>
<div id="comment_box_5368018007836816212_114665228615_3782650" style="float:left;width:311px;">
<div style="padding:0 4px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;font-weight:bold;" href="http://www.facebook.com/profile.php?id=611394693">Abhishek Gupta</a></p>
<div id="text_expose_id_4a7f23bf3257a6471028391" style="display:inline;padding-left:.4em;">kya aap close up karte hai?<br />
&#8230;&#8230;aap close up kyun nahi karte hain? (all in nasal tone)</div>
</div>
<div style="margin-left:4px;font-size:11px;color:#777777;padding-top:2px;padding-bottom:2px;">about an hour ago · <a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Click here to remove this comment">Delete</a></div>
</div>
</div>
<div id="comment_5368018007836816212_114665228615_3782713" style="background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#eceff5;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#e5eaf1;clear:left;float:none;margin-bottom:2px;width:350px;background-position:initial initial;padding:6px 4px 0 6px;">
<div style="text-align:left;padding-right:2px;padding-bottom:4px;float:left;height:35px;width:35px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Govind Daga" href="http://www.facebook.com/govind.d"><span style="display:block;background-color:#c4cde0;position:relative;width:32px;height:32px;"><img style="width:32px;height:32px;border:0 initial initial;" src="http://profile.ak.fbcdn.net/v228/1886/87/q708791097_9452.jpg" alt="Govind Daga" /><img style="position:absolute;top:-50px;left:-50px;border:0 initial initial;" src="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" alt="" /></span></a></div>
<div id="comment_box_5368018007836816212_114665228615_3782713" style="float:left;width:311px;">
<div style="padding:0 4px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;font-weight:bold;" href="http://www.facebook.com/govind.d">Govind Daga</a></p>
<div id="text_expose_id_4a7f23bf32ac21b95980563" style="display:inline;padding-left:.4em;"><span>And believe me on this one : There is a brand, most prolly Colgate powder, that &#8220;SUNIEL SHETTY&#8221; endorses&#8230; Who on Earth would but that??????????????????????</span><span style="display:block;float:left;margin-left:-10px;padding:0;"> </span>?</div>
</div>
<div style="margin-left:4px;font-size:11px;color:#777777;padding-top:2px;padding-bottom:2px;">about an hour ago</div>
</div>
</div>
<div id="comment_5368018007836816212_114665228615_3782754" style="background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#eceff5;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#e5eaf1;clear:left;float:none;margin-bottom:2px;width:350px;background-position:initial initial;padding:6px 4px 0 6px;">
<div style="text-align:left;padding-right:2px;padding-bottom:4px;float:left;height:35px;width:35px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Abhishek Gupta" href="http://www.facebook.com/profile.php?id=611394693"><span style="display:block;background-color:#c4cde0;position:relative;width:32px;height:32px;"><img style="width:32px;height:32px;border:0 initial initial;" src="http://profile.ak.fbcdn.net/v224/959/36/q611394693_4732.jpg" alt="Abhishek Gupta" /><img style="position:absolute;top:-50px;left:-50px;border:0 initial initial;" src="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" alt="" /></span></a></div>
<div id="comment_box_5368018007836816212_114665228615_3782754" style="float:left;width:311px;">
<div style="padding:0 4px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;font-weight:bold;" href="http://www.facebook.com/profile.php?id=611394693">Abhishek Gupta</a></p>
<div id="text_expose_id_4a7f23bf331cd0357446060" style="display:inline;padding-left:.4em;">I got this from net :<br />
Tata Indicom: With Ajay Devgan in double roll! And the dumbwitted kajol too</p>
<p>&#8216;Firangi log aaye hain, bijeneshh laaye hain!<br />
Chineesshhh, Japaneeshh, Thank you pleasssh, Badtameesh!&#8217; :pound:</p></div>
</div>
<div style="margin-left:4px;font-size:11px;color:#777777;padding-top:2px;padding-bottom:2px;">about an hour ago · <a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Click here to remove this comment">Delete</a></div>
</div>
</div>
<div id="comment_5368018007836816212_114665228615_3782771" style="background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#eceff5;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#e5eaf1;clear:left;float:none;margin-bottom:2px;width:350px;background-position:initial initial;padding:6px 4px 0 6px;">
<div style="text-align:left;padding-right:2px;padding-bottom:4px;float:left;height:35px;width:35px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Abhishek Gupta" href="http://www.facebook.com/profile.php?id=611394693"><span style="display:block;background-color:#c4cde0;position:relative;width:32px;height:32px;"><img style="width:32px;height:32px;border:0 initial initial;" src="http://profile.ak.fbcdn.net/v224/959/36/q611394693_4732.jpg" alt="Abhishek Gupta" /><img style="position:absolute;top:-50px;left:-50px;border:0 initial initial;" src="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" alt="" /></span></a></div>
<div id="comment_box_5368018007836816212_114665228615_3782771" style="float:left;width:311px;">
<div style="padding:0 4px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;font-weight:bold;" href="http://www.facebook.com/profile.php?id=611394693">Abhishek Gupta</a></p>
<div id="text_expose_id_4a7f23bf3378f5a08135822" style="display:inline;padding-left:.4em;">I am loving facebook very much</div>
</div>
<div style="margin-left:4px;font-size:11px;color:#777777;padding-top:2px;padding-bottom:2px;">about an hour ago · <a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Click here to remove this comment">Delete</a></div>
</div>
</div>
<div id="comment_5368018007836816212_114665228615_3782812" style="background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#eceff5;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#e5eaf1;clear:left;float:none;margin-bottom:2px;width:350px;background-position:initial initial;padding:6px 4px 0 6px;">
<div style="text-align:left;padding-right:2px;padding-bottom:4px;float:left;height:35px;width:35px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Govind Daga" href="http://www.facebook.com/govind.d"><span style="display:block;background-color:#c4cde0;position:relative;width:32px;height:32px;"><img style="width:32px;height:32px;border:0 initial initial;" src="http://profile.ak.fbcdn.net/v228/1886/87/q708791097_9452.jpg" alt="Govind Daga" /><img style="position:absolute;top:-50px;left:-50px;border:0 initial initial;" src="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" alt="" /></span></a></div>
<div id="comment_box_5368018007836816212_114665228615_3782812" style="float:left;width:311px;">
<div style="padding:0 4px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;font-weight:bold;" href="http://www.facebook.com/govind.d">Govind Daga</a></p>
<div id="text_expose_id_4a7f23bf33b8b3393431885" style="display:inline;padding-left:.4em;">We need to have FACEBOOK ads too&#8230;. lolz. Facebook toke Creative Director niye nebe~~!! lolz&#8230; Hamare ko bhi job wob dilaiyega!!</div>
</div>
<div style="margin-left:4px;font-size:11px;color:#777777;padding-top:2px;padding-bottom:2px;">about an hour ago</div>
</div>
</div>
<div id="comment_5368018007836816212_114665228615_3782906" style="background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#eceff5;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#e5eaf1;clear:left;float:none;margin-bottom:2px;width:350px;background-position:initial initial;padding:6px 4px 0 6px;">
<div style="text-align:left;padding-right:2px;padding-bottom:4px;float:left;height:35px;width:35px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Abhishek Gupta" href="http://www.facebook.com/profile.php?id=611394693"><span style="display:block;background-color:#c4cde0;position:relative;width:32px;height:32px;"><img style="width:32px;height:32px;border:0 initial initial;" src="http://profile.ak.fbcdn.net/v224/959/36/q611394693_4732.jpg" alt="Abhishek Gupta" /><img style="position:absolute;top:-50px;left:-50px;border:0 initial initial;" src="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" alt="" /></span></a></div>
<div id="comment_box_5368018007836816212_114665228615_3782906" style="float:left;width:311px;">
<div style="padding:0 4px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;font-weight:bold;" href="http://www.facebook.com/profile.php?id=611394693">Abhishek Gupta</a></p>
<div id="text_expose_id_4a7f23bf341326e69443554" style="display:inline;padding-left:.4em;">Kya Lux Cozy wakai Lucky hai chachoo&#8221; A boy asks Sunny Deol&#8230;<br />
and suddenly some SAMOSAz come&#8230;&#8230;.</p>
<p>Kuch Bhi&#8230;Kahin Bhi :</p></div>
</div>
<div style="margin-left:4px;font-size:11px;color:#777777;padding-top:2px;padding-bottom:2px;">about an hour ago · <a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Click here to remove this comment">Delete</a></div>
</div>
</div>
<div id="comment_5368018007836816212_114665228615_3782937" style="background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#eceff5;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#e5eaf1;clear:left;float:none;margin-bottom:2px;width:350px;background-position:initial initial;padding:6px 4px 0 6px;">
<div style="text-align:left;padding-right:2px;padding-bottom:4px;float:left;height:35px;width:35px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Govind Daga" href="http://www.facebook.com/govind.d"><span style="display:block;background-color:#c4cde0;position:relative;width:32px;height:32px;"><img style="width:32px;height:32px;border:0 initial initial;" src="http://profile.ak.fbcdn.net/v228/1886/87/q708791097_9452.jpg" alt="Govind Daga" /><img style="position:absolute;top:-50px;left:-50px;border:0 initial initial;" src="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" alt="" /></span></a></div>
<div id="comment_box_5368018007836816212_114665228615_3782937" style="float:left;width:311px;">
<div style="padding:0 4px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;font-weight:bold;" href="http://www.facebook.com/govind.d">Govind Daga</a></p>
<div id="text_expose_id_4a7f23bf345e08c86201597" style="display:inline;padding-left:.4em;">Are woh SUNNNNNY DEOL hai bhai~~!!<br />
What about : Sawd Sugandh ka raja&#8230;.. Badshah Masala!!!</div>
</div>
<div style="margin-left:4px;font-size:11px;color:#777777;padding-top:2px;padding-bottom:2px;">59 minutes ago</div>
</div>
</div>
<div id="comment_5368018007836816212_114665228615_3783101" style="background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#eceff5;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#e5eaf1;clear:left;float:none;margin-bottom:2px;width:350px;background-position:initial initial;padding:6px 4px 0 6px;">
<div style="text-align:left;padding-right:2px;padding-bottom:4px;float:left;height:35px;width:35px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Abhishek Gupta" href="http://www.facebook.com/profile.php?id=611394693"><span style="display:block;background-color:#c4cde0;position:relative;width:32px;height:32px;"><img style="width:32px;height:32px;border:0 initial initial;" src="http://profile.ak.fbcdn.net/v224/959/36/q611394693_4732.jpg" alt="Abhishek Gupta" /><img style="position:absolute;top:-50px;left:-50px;border:0 initial initial;" src="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" alt="" /></span></a></div>
<div id="comment_box_5368018007836816212_114665228615_3783101" style="float:left;width:311px;">
<div style="padding:0 4px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;font-weight:bold;" href="http://www.facebook.com/profile.php?id=611394693">Abhishek Gupta</a></p>
<div id="text_expose_id_4a7f23bf34b293b79082664" style="display:inline;padding-left:.4em;">and how about Zandu Kesari Jeevan</div>
</div>
<div style="margin-left:4px;font-size:11px;color:#777777;padding-top:2px;padding-bottom:2px;">51 minutes ago · <a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Click here to remove this comment">Delete</a></div>
</div>
</div>
<div id="comment_5368018007836816212_114665228615_3783126" style="background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#eceff5;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#e5eaf1;clear:left;float:none;margin-bottom:2px;width:350px;background-position:initial initial;padding:6px 4px 0 6px;">
<div style="text-align:left;padding-right:2px;padding-bottom:4px;float:left;height:35px;width:35px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Govind Daga" href="http://www.facebook.com/govind.d"><span style="display:block;background-color:#c4cde0;position:relative;width:32px;height:32px;"><img style="width:32px;height:32px;border:0 initial initial;" src="http://profile.ak.fbcdn.net/v228/1886/87/q708791097_9452.jpg" alt="Govind Daga" /><img style="position:absolute;top:-50px;left:-50px;border:0 initial initial;" src="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" alt="" /></span></a></div>
<div id="comment_box_5368018007836816212_114665228615_3783126" style="float:left;width:311px;">
<div style="padding:0 4px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;font-weight:bold;" href="http://www.facebook.com/govind.d">Govind Daga</a></p>
<div id="text_expose_id_4a7f23bf350016a89908369" style="display:inline;padding-left:.4em;">Belmont Academy of Style!!!!!</div>
</div>
<div style="margin-left:4px;font-size:11px;color:#777777;padding-top:2px;padding-bottom:2px;">50 minutes ago</div>
</div>
</div>
</div>
<div style="position:relative;float:left;clear:both;width:360px;">
<div id="comment_5368018007836816212_114665228615_3783136" style="background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#eceff5;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#e5eaf1;clear:left;float:none;margin-bottom:2px;width:350px;background-position:initial initial;padding:6px 4px 0 6px;">
<div style="text-align:left;padding-right:2px;padding-bottom:4px;float:left;height:35px;width:35px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Alok Sharma" href="http://www.facebook.com/profile.php?id=571725198"><span style="display:block;background-color:#c4cde0;position:relative;width:32px;height:32px;"><img style="width:32px;height:32px;border:0 initial initial;" src="http://profile.ak.fbcdn.net/v229/114/123/q571725198_2405.jpg" alt="Alok Sharma" /><img style="position:absolute;top:-50px;left:-50px;border:0 initial initial;" src="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" alt="" /></span></a></div>
<div id="comment_box_5368018007836816212_114665228615_3783136" style="float:left;width:311px;">
<div style="padding:0 4px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;font-weight:bold;" href="http://www.facebook.com/profile.php?id=571725198">Alok Sharma</a></p>
<div id="text_expose_id_4a7f236e947e66e39330271" style="display:inline;padding-left:.4em;">Sanjay dutt and TMT sariya <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>and do u think amitabh eats dabur chyawanprash???..or navratan cool cool oil??</p></div>
</div>
<div style="margin-left:4px;font-size:11px;color:#777777;padding-top:2px;padding-bottom:2px;">49 minutes ago</div>
</div>
</div>
<div id="comment_5368018007836816212_114665228615_3783172" style="background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#eceff5;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#e5eaf1;clear:left;float:none;margin-bottom:2px;width:350px;background-position:initial initial;padding:6px 4px 0 6px;">
<div style="text-align:left;padding-right:2px;padding-bottom:4px;float:left;height:35px;width:35px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Govind Daga" href="http://www.facebook.com/govind.d"><span style="display:block;background-color:#c4cde0;position:relative;width:32px;height:32px;"><img style="width:32px;height:32px;border:0 initial initial;" src="http://profile.ak.fbcdn.net/v228/1886/87/q708791097_9452.jpg" alt="Govind Daga" /><img style="position:absolute;top:-50px;left:-50px;border:0 initial initial;" src="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" alt="" /></span></a></div>
<div id="comment_box_5368018007836816212_114665228615_3783172" style="float:left;width:311px;">
<div style="padding:0 4px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;font-weight:bold;" href="http://www.facebook.com/govind.d">Govind Daga</a></p>
<div id="text_expose_id_4a7f236e94c0c7883213940" style="display:inline;padding-left:.4em;">If he were to be using those actually he would have been charging 50 times more&#8230;</div>
</div>
<div style="margin-left:4px;font-size:11px;color:#777777;padding-top:2px;padding-bottom:2px;">48 minutes ago</div>
</div>
</div>
<div id="comment_5368018007836816212_114665228615_3783164" style="background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#eceff5;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#e5eaf1;clear:left;float:none;margin-bottom:2px;width:350px;background-position:initial initial;padding:6px 4px 0 6px;">
<div style="text-align:left;padding-right:2px;padding-bottom:4px;float:left;height:35px;width:35px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Alok Sharma" href="http://www.facebook.com/profile.php?id=571725198"><span style="display:block;background-color:#c4cde0;position:relative;width:32px;height:32px;"><img style="width:32px;height:32px;border:0 initial initial;" src="http://profile.ak.fbcdn.net/v229/114/123/q571725198_2405.jpg" alt="Alok Sharma" /><img style="position:absolute;top:-50px;left:-50px;border:0 initial initial;" src="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" alt="" /></span></a></div>
<div id="comment_box_5368018007836816212_114665228615_3783164" style="float:left;width:311px;">
<div style="padding:0 4px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;font-weight:bold;" href="http://www.facebook.com/profile.php?id=571725198">Alok Sharma</a></p>
<div id="text_expose_id_4a7f236e94fdb7200247526" style="display:inline;padding-left:.4em;">Ye to bada toing hai&#8230;.;)&#8230;now for god&#8217;s sake&#8230;wtf is this toing???</div>
</div>
<div style="margin-left:4px;font-size:11px;color:#777777;padding-top:2px;padding-bottom:2px;">48 minutes ago</div>
</div>
</div>
<div id="comment_5368018007836816212_114665228615_3783166" style="background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#eceff5;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#e5eaf1;clear:left;float:none;margin-bottom:2px;width:350px;background-position:initial initial;padding:6px 4px 0 6px;">
<div style="text-align:left;padding-right:2px;padding-bottom:4px;float:left;height:35px;width:35px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Piu Chatterjee" href="http://www.facebook.com/profile.php?id=1070122674"><span style="display:block;background-color:#c4cde0;position:relative;width:32px;height:32px;"><img style="width:32px;height:32px;border:0 initial initial;" src="http://profile.ak.fbcdn.net/v225/1331/68/q1070122674_3122.jpg" alt="Piu Chatterjee" /><img style="position:absolute;top:-50px;left:-50px;border:0 initial initial;" src="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" alt="" /></span></a></div>
<div id="comment_box_5368018007836816212_114665228615_3783166" style="float:left;width:311px;">
<div style="padding:0 4px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;font-weight:bold;" href="http://www.facebook.com/profile.php?id=1070122674">Piu Chatterjee</a></p>
<div id="text_expose_id_4a7f236e953e24544308113" style="display:inline;padding-left:.4em;">i dont like salty toothpastes&#8230;i love the taste of close-up and pepsodent&#8230;!!!! <img src='http://s2.wp.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' />  *sheepish grin*</div>
</div>
<div style="margin-left:4px;font-size:11px;color:#777777;padding-top:2px;padding-bottom:2px;">48 minutes ago</div>
</div>
</div>
<div id="comment_5368018007836816212_114665228615_3783200" style="background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#eceff5;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#e5eaf1;clear:left;float:none;margin-bottom:2px;width:350px;background-position:initial initial;padding:6px 4px 0 6px;">
<div style="text-align:left;padding-right:2px;padding-bottom:4px;float:left;height:35px;width:35px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Govind Daga" href="http://www.facebook.com/govind.d"><span style="display:block;background-color:#c4cde0;position:relative;width:32px;height:32px;"><img style="width:32px;height:32px;border:0 initial initial;" src="http://profile.ak.fbcdn.net/v228/1886/87/q708791097_9452.jpg" alt="Govind Daga" /><img style="position:absolute;top:-50px;left:-50px;border:0 initial initial;" src="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" alt="" /></span></a></div>
<div id="comment_box_5368018007836816212_114665228615_3783200" style="float:left;width:311px;">
<div style="padding:0 4px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;font-weight:bold;" href="http://www.facebook.com/govind.d">Govind Daga</a></p>
<div id="text_expose_id_4a7f236e957bb2222000837" style="display:inline;padding-left:.4em;">The SALT GODS!!!!<br />
*Yeh to bada toing hai* &#8212;&#8212;&#8211; ULTIMATE!!!!!!!</div>
</div>
<div style="margin-left:4px;font-size:11px;color:#777777;padding-top:2px;padding-bottom:2px;">46 minutes ago</div>
</div>
</div>
<div id="comment_5368018007836816212_114665228615_3783219" style="background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#eceff5;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#e5eaf1;clear:left;float:none;margin-bottom:2px;width:350px;background-position:initial initial;padding:6px 4px 0 6px;">
<div style="text-align:left;padding-right:2px;padding-bottom:4px;float:left;height:35px;width:35px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Alok Sharma" href="http://www.facebook.com/profile.php?id=571725198"><span style="display:block;background-color:#c4cde0;position:relative;width:32px;height:32px;"><img style="width:32px;height:32px;border:0 initial initial;" src="http://profile.ak.fbcdn.net/v229/114/123/q571725198_2405.jpg" alt="Alok Sharma" /><img style="position:absolute;top:-50px;left:-50px;border:0 initial initial;" src="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" alt="" /></span></a></div>
<div id="comment_box_5368018007836816212_114665228615_3783219" style="float:left;width:311px;">
<div style="padding:0 4px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;font-weight:bold;" href="http://www.facebook.com/profile.php?id=571725198">Alok Sharma</a></p>
<div id="text_expose_id_4a7f236e95b970a89733487" style="display:inline;padding-left:.4em;">Lol&#8230;&#8230;!!!&#8230;feels like raymond&#8230;the complete man&#8230;since 1925&#8230;so before that,u can imagine-never was a complete man ever&#8230;.:D&#8230;</div>
</div>
<div style="margin-left:4px;font-size:11px;color:#777777;padding-top:2px;padding-bottom:2px;">45 minutes ago</div>
</div>
</div>
<div id="comment_5368018007836816212_114665228615_3783227" style="background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#eceff5;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#e5eaf1;clear:left;float:none;margin-bottom:2px;width:350px;background-position:initial initial;padding:6px 4px 0 6px;">
<div style="text-align:left;padding-right:2px;padding-bottom:4px;float:left;height:35px;width:35px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Abhishek Gupta" href="http://www.facebook.com/profile.php?id=611394693"><span style="display:block;background-color:#c4cde0;position:relative;width:32px;height:32px;"><img style="width:32px;height:32px;border:0 initial initial;" src="http://profile.ak.fbcdn.net/v224/959/36/q611394693_4732.jpg" alt="Abhishek Gupta" /><img style="position:absolute;top:-50px;left:-50px;border:0 initial initial;" src="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" alt="" /></span></a></div>
<div id="comment_box_5368018007836816212_114665228615_3783227" style="float:left;width:311px;">
<div style="padding:0 4px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;font-weight:bold;" href="http://www.facebook.com/profile.php?id=611394693">Abhishek Gupta</a></p>
<div id="text_expose_id_4a7f236e960d29902874676" style="display:inline;padding-left:.4em;">kya apke pass hai&#8230;meter wala pen?</div>
</div>
<div style="margin-left:4px;font-size:11px;color:#777777;padding-top:2px;padding-bottom:2px;">45 minutes ago · <a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Click here to remove this comment">Delete</a></div>
</div>
</div>
<div id="comment_5368018007836816212_114665228615_3783248" style="background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#eceff5;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#e5eaf1;clear:left;float:none;margin-bottom:2px;width:350px;background-position:initial initial;padding:6px 4px 0 6px;">
<div style="text-align:left;padding-right:2px;padding-bottom:4px;float:left;height:35px;width:35px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Govind Daga" href="http://www.facebook.com/govind.d"><span style="display:block;background-color:#c4cde0;position:relative;width:32px;height:32px;"><img style="width:32px;height:32px;border:0 initial initial;" src="http://profile.ak.fbcdn.net/v228/1886/87/q708791097_9452.jpg" alt="Govind Daga" /><img style="position:absolute;top:-50px;left:-50px;border:0 initial initial;" src="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" alt="" /></span></a></div>
<div id="comment_box_5368018007836816212_114665228615_3783248" style="float:left;width:311px;">
<div style="padding:0 4px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;font-weight:bold;" href="http://www.facebook.com/govind.d">Govind Daga</a></p>
<div id="text_expose_id_4a7f236e9649e1f55379413" style="display:inline;padding-left:.4em;">Sabki Pasand &#8212; Manikchand!!!</div>
</div>
<div style="margin-left:4px;font-size:11px;color:#777777;padding-top:2px;padding-bottom:2px;">44 minutes ago</div>
</div>
</div>
<div id="comment_5368018007836816212_114665228615_3783270" style="background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#eceff5;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#e5eaf1;clear:left;float:none;margin-bottom:2px;width:350px;background-position:initial initial;padding:6px 4px 0 6px;">
<div style="text-align:left;padding-right:2px;padding-bottom:4px;float:left;height:35px;width:35px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Alok Sharma" href="http://www.facebook.com/profile.php?id=571725198"><span style="display:block;background-color:#c4cde0;position:relative;width:32px;height:32px;"><img style="width:32px;height:32px;border:0 initial initial;" src="http://profile.ak.fbcdn.net/v229/114/123/q571725198_2405.jpg" alt="Alok Sharma" /><img style="position:absolute;top:-50px;left:-50px;border:0 initial initial;" src="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" alt="" /></span></a></div>
<div id="comment_box_5368018007836816212_114665228615_3783270" style="float:left;width:311px;">
<div style="padding:0 4px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;font-weight:bold;" href="http://www.facebook.com/profile.php?id=571725198">Alok Sharma</a></p>
<div id="text_expose_id_4a7f236e968755f18349053" style="display:inline;padding-left:.4em;">Ye andar ki baat hai&#8230;.lux andarwear;)&#8230;wear a chaddi baniyan and girls go gaga over u&#8230;and u beat so many hatta katta ppl&#8230;..</div>
</div>
<div style="margin-left:4px;font-size:11px;color:#777777;padding-top:2px;padding-bottom:2px;">43 minutes ago</div>
</div>
</div>
<div id="comment_5368018007836816212_114665228615_3783272" style="background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#eceff5;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#e5eaf1;clear:left;float:none;margin-bottom:2px;width:350px;background-position:initial initial;padding:6px 4px 0 6px;">
<div style="text-align:left;padding-right:2px;padding-bottom:4px;float:left;height:35px;width:35px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Abhishek Gupta" href="http://www.facebook.com/profile.php?id=611394693"><span style="display:block;background-color:#c4cde0;position:relative;width:32px;height:32px;"><img style="width:32px;height:32px;border:0 initial initial;" src="http://profile.ak.fbcdn.net/v224/959/36/q611394693_4732.jpg" alt="Abhishek Gupta" /><img style="position:absolute;top:-50px;left:-50px;border:0 initial initial;" src="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" alt="" /></span></a></div>
<div id="comment_box_5368018007836816212_114665228615_3783272" style="float:left;width:311px;">
<div style="padding:0 4px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;font-weight:bold;" href="http://www.facebook.com/profile.php?id=611394693">Abhishek Gupta</a></p>
<div id="text_expose_id_4a7f236e96d6e8d24728976" style="display:inline;padding-left:.4em;">@Alok :<br />
&#8216;toing&#8217; may have something to do with the tensile strength of the elastics used in underwears</div>
</div>
<div style="margin-left:4px;font-size:11px;color:#777777;padding-top:2px;padding-bottom:2px;">43 minutes ago · <a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Click here to remove this comment">Delete</a></div>
</div>
</div>
<div id="comment_5368018007836816212_114665228615_3783304" style="background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#eceff5;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#e5eaf1;clear:left;float:none;margin-bottom:2px;width:350px;background-position:initial initial;padding:6px 4px 0 6px;">
<div style="text-align:left;padding-right:2px;padding-bottom:4px;float:left;height:35px;width:35px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Govind Daga" href="http://www.facebook.com/govind.d"><span style="display:block;background-color:#c4cde0;position:relative;width:32px;height:32px;"><img style="width:32px;height:32px;border:0 initial initial;" src="http://profile.ak.fbcdn.net/v228/1886/87/q708791097_9452.jpg" alt="Govind Daga" /><img style="position:absolute;top:-50px;left:-50px;border:0 initial initial;" src="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" alt="" /></span></a></div>
<div id="comment_box_5368018007836816212_114665228615_3783304" style="float:left;width:311px;">
<div style="padding:0 4px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;font-weight:bold;" href="http://www.facebook.com/govind.d">Govind Daga</a></p>
<div id="text_expose_id_4a7f236e9717d7958588422" style="display:inline;padding-left:.4em;">*Toing might also be&#8230;..*</p>
<p>** Munh mein Rajnigandha, kadamon mein duniya **</p></div>
</div>
<div style="margin-left:4px;font-size:11px;color:#777777;padding-top:2px;padding-bottom:2px;">41 minutes ago</div>
</div>
</div>
<div id="comment_5368018007836816212_114665228615_3783305" style="background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#eceff5;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#e5eaf1;clear:left;float:none;margin-bottom:2px;width:350px;background-position:initial initial;padding:6px 4px 0 6px;">
<div style="text-align:left;padding-right:2px;padding-bottom:4px;float:left;height:35px;width:35px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Alok Sharma" href="http://www.facebook.com/profile.php?id=571725198"><span style="display:block;background-color:#c4cde0;position:relative;width:32px;height:32px;"><img style="width:32px;height:32px;border:0 initial initial;" src="http://profile.ak.fbcdn.net/v229/114/123/q571725198_2405.jpg" alt="Alok Sharma" /><img style="position:absolute;top:-50px;left:-50px;border:0 initial initial;" src="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" alt="" /></span></a></div>
<div id="comment_box_5368018007836816212_114665228615_3783305" style="float:left;width:311px;">
<div style="padding:0 4px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;font-weight:bold;" href="http://www.facebook.com/profile.php?id=571725198">Alok Sharma</a></p>
<div id="text_expose_id_4a7f236e9754c2a80683041" style="display:inline;padding-left:.4em;">&#8230;&#8230;..bsnl&#8217;s ads&#8230;.-ultimate!!2mbps superspeed&#8230;bsnl is all we need:D&#8230;.bloody weed!!!&#8230;..</div>
</div>
<div style="margin-left:4px;font-size:11px;color:#777777;padding-top:2px;padding-bottom:2px;">41 minutes ago</div>
</div>
</div>
<div id="comment_5368018007836816212_114665228615_3783315" style="background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#eceff5;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#e5eaf1;clear:left;float:none;margin-bottom:2px;width:350px;background-position:initial initial;padding:6px 4px 0 6px;">
<div style="text-align:left;padding-right:2px;padding-bottom:4px;float:left;height:35px;width:35px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Piu Chatterjee" href="http://www.facebook.com/profile.php?id=1070122674"><span style="display:block;background-color:#c4cde0;position:relative;width:32px;height:32px;"><img style="width:32px;height:32px;border:0 initial initial;" src="http://profile.ak.fbcdn.net/v225/1331/68/q1070122674_3122.jpg" alt="Piu Chatterjee" /><img style="position:absolute;top:-50px;left:-50px;border:0 initial initial;" src="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" alt="" /></span></a></div>
<div id="comment_box_5368018007836816212_114665228615_3783315" style="float:left;width:311px;">
<div style="padding:0 4px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;font-weight:bold;" href="http://www.facebook.com/profile.php?id=1070122674">Piu Chatterjee</a></p>
<div id="text_expose_id_4a7f236e9794e4540614594" style="display:inline;padding-left:.4em;">*toing* is a verry subtle yet wierdly cheap was of describing what sex appeal the males exude after they wear tham blasted briefs!<br />
p.s &#8211; i do not like the briefs advertiesment billboards staring down at me from the streets!!!! :O</div>
</div>
<div style="margin-left:4px;font-size:11px;color:#777777;padding-top:2px;padding-bottom:2px;">40 minutes ago</div>
</div>
</div>
<div id="comment_5368018007836816212_114665228615_3783335" style="background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#eceff5;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#e5eaf1;clear:left;float:none;margin-bottom:2px;width:350px;background-position:initial initial;padding:6px 4px 0 6px;">
<div style="text-align:left;padding-right:2px;padding-bottom:4px;float:left;height:35px;width:35px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Alok Sharma" href="http://www.facebook.com/profile.php?id=571725198"><span style="display:block;background-color:#c4cde0;position:relative;width:32px;height:32px;"><img style="width:32px;height:32px;border:0 initial initial;" src="http://profile.ak.fbcdn.net/v229/114/123/q571725198_2405.jpg" alt="Alok Sharma" /><img style="position:absolute;top:-50px;left:-50px;border:0 initial initial;" src="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" alt="" /></span></a></div>
<div id="comment_box_5368018007836816212_114665228615_3783335" style="float:left;width:311px;">
<div style="padding:0 4px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;font-weight:bold;" href="http://www.facebook.com/profile.php?id=571725198">Alok Sharma</a></p>
<div id="text_expose_id_4a7f236e97d1c6e22623047" style="display:inline;padding-left:.4em;">Lycra&#8230;do u have it???</div>
</div>
<div style="margin-left:4px;font-size:11px;color:#777777;padding-top:2px;padding-bottom:2px;">39 minutes ago</div>
</div>
</div>
<div id="comment_5368018007836816212_114665228615_3783355" style="background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#eceff5;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#e5eaf1;clear:left;float:none;margin-bottom:2px;width:350px;background-position:initial initial;padding:6px 4px 0 6px;">
<div style="text-align:left;padding-right:2px;padding-bottom:4px;float:left;height:35px;width:35px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Govind Daga" href="http://www.facebook.com/govind.d"><span style="display:block;background-color:#c4cde0;position:relative;width:32px;height:32px;"><img style="width:32px;height:32px;border:0 initial initial;" src="http://profile.ak.fbcdn.net/v228/1886/87/q708791097_9452.jpg" alt="Govind Daga" /><img style="position:absolute;top:-50px;left:-50px;border:0 initial initial;" src="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" alt="" /></span></a></div>
<div id="comment_box_5368018007836816212_114665228615_3783355" style="float:left;width:311px;">
<div style="padding:0 4px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;font-weight:bold;" href="http://www.facebook.com/govind.d">Govind Daga</a></p>
<div id="text_expose_id_4a7f236e980fd3a67013784" style="display:inline;padding-left:.4em;">@ Piu : They are not staring at you&#8230; They are staring at&#8230;&#8230;</div>
</div>
<div style="margin-left:4px;font-size:11px;color:#777777;padding-top:2px;padding-bottom:2px;">38 minutes ago</div>
</div>
</div>
<div id="comment_5368018007836816212_114665228615_3783365" style="background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#eceff5;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#e5eaf1;clear:left;float:none;margin-bottom:2px;width:350px;background-position:initial initial;padding:6px 4px 0 6px;">
<div style="text-align:left;padding-right:2px;padding-bottom:4px;float:left;height:35px;width:35px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Alok Sharma" href="http://www.facebook.com/profile.php?id=571725198"><span style="display:block;background-color:#c4cde0;position:relative;width:32px;height:32px;"><img style="width:32px;height:32px;border:0 initial initial;" src="http://profile.ak.fbcdn.net/v229/114/123/q571725198_2405.jpg" alt="Alok Sharma" /><img style="position:absolute;top:-50px;left:-50px;border:0 initial initial;" src="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" alt="" /></span></a></div>
<div id="comment_box_5368018007836816212_114665228615_3783365" style="float:left;width:311px;">
<div style="padding:0 4px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;font-weight:bold;" href="http://www.facebook.com/profile.php?id=571725198">Alok Sharma</a></p>
<div id="text_expose_id_4a7f236e984d18c33569399" style="display:inline;padding-left:.4em;">Ganesh sattu!!!</div>
</div>
<div style="margin-left:4px;font-size:11px;color:#777777;padding-top:2px;padding-bottom:2px;">37 minutes ago</div>
</div>
</div>
<div id="comment_5368018007836816212_114665228615_3783390" style="background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#eceff5;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#e5eaf1;clear:left;float:none;margin-bottom:2px;width:350px;background-position:initial initial;padding:6px 4px 0 6px;">
<div style="text-align:left;padding-right:2px;padding-bottom:4px;float:left;height:35px;width:35px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Govind Daga" href="http://www.facebook.com/govind.d"><span style="display:block;background-color:#c4cde0;position:relative;width:32px;height:32px;"><img style="width:32px;height:32px;border:0 initial initial;" src="http://profile.ak.fbcdn.net/v228/1886/87/q708791097_9452.jpg" alt="Govind Daga" /><img style="position:absolute;top:-50px;left:-50px;border:0 initial initial;" src="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" alt="" /></span></a></div>
<div id="comment_box_5368018007836816212_114665228615_3783390" style="float:left;width:311px;">
<div style="padding:0 4px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;font-weight:bold;" href="http://www.facebook.com/govind.d">Govind Daga</a></p>
<div id="text_expose_id_4a7f236e988b46688956135" style="display:inline;padding-left:.4em;">Boroplus and Kareena Kapoor : Dulhe ke yaar thoda Boroplus lagale&#8230; What people would do for money !!!!</div>
</div>
<div style="margin-left:4px;font-size:11px;color:#777777;padding-top:2px;padding-bottom:2px;">36 minutes ago</div>
</div>
</div>
<div id="comment_5368018007836816212_114665228615_3783440" style="background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#eceff5;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#e5eaf1;clear:left;float:none;margin-bottom:2px;width:350px;background-position:initial initial;padding:6px 4px 0 6px;">
<div style="text-align:left;padding-right:2px;padding-bottom:4px;float:left;height:35px;width:35px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Alok Sharma" href="http://www.facebook.com/profile.php?id=571725198"><span style="display:block;background-color:#c4cde0;position:relative;width:32px;height:32px;"><img style="width:32px;height:32px;border:0 initial initial;" src="http://profile.ak.fbcdn.net/v229/114/123/q571725198_2405.jpg" alt="Alok Sharma" /><img style="position:absolute;top:-50px;left:-50px;border:0 initial initial;" src="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" alt="" /></span></a></div>
<div id="comment_box_5368018007836816212_114665228615_3783440" style="float:left;width:311px;">
<div style="padding:0 4px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;font-weight:bold;" href="http://www.facebook.com/profile.php?id=571725198">Alok Sharma</a></p>
<div id="text_expose_id_4a7f236e98c8d2b14171218" style="display:inline;padding-left:.4em;">Jab ghar mein ho sun&#8230;tan tana tan&#8230;..god&#8230;there should have been another tan at the end for rhyming pleasure atleast!!</div>
</div>
<div style="margin-left:4px;font-size:11px;color:#777777;padding-top:2px;padding-bottom:2px;">33 minutes ago</div>
</div>
</div>
<div id="comment_5368018007836816212_114665228615_3783498" style="background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#eceff5;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#e5eaf1;clear:left;float:none;margin-bottom:2px;width:350px;background-position:initial initial;padding:6px 4px 0 6px;">
<div style="text-align:left;padding-right:2px;padding-bottom:4px;float:left;height:35px;width:35px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Alok Sharma" href="http://www.facebook.com/profile.php?id=571725198"><span style="display:block;background-color:#c4cde0;position:relative;width:32px;height:32px;"><img style="width:32px;height:32px;border:0 initial initial;" src="http://profile.ak.fbcdn.net/v229/114/123/q571725198_2405.jpg" alt="Alok Sharma" /><img style="position:absolute;top:-50px;left:-50px;border:0 initial initial;" src="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" alt="" /></span></a></div>
<div id="comment_box_5368018007836816212_114665228615_3783498" style="float:left;width:311px;">
<div style="padding:0 4px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;font-weight:bold;" href="http://www.facebook.com/profile.php?id=571725198">Alok Sharma</a></p>
<div id="text_expose_id_4a7f236e990631b00101648" style="display:inline;padding-left:.4em;">Imagine kishan kumar in an ad&#8230;wid all the glamor babes around&#8230;.raymond-the complete man!!!&#8230;&#8230;.</div>
</div>
<div style="margin-left:4px;font-size:11px;color:#777777;padding-top:2px;padding-bottom:2px;">31 minutes ago</div>
</div>
</div>
<div id="comment_5368018007836816212_114665228615_3783504" style="background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#eceff5;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#e5eaf1;clear:left;float:none;margin-bottom:2px;width:350px;background-position:initial initial;padding:6px 4px 0 6px;">
<div style="text-align:left;padding-right:2px;padding-bottom:4px;float:left;height:35px;width:35px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Abhishek Gupta" href="http://www.facebook.com/profile.php?id=611394693"><span style="display:block;background-color:#c4cde0;position:relative;width:32px;height:32px;"><img style="width:32px;height:32px;border:0 initial initial;" src="http://profile.ak.fbcdn.net/v224/959/36/q611394693_4732.jpg" alt="Abhishek Gupta" /><img style="position:absolute;top:-50px;left:-50px;border:0 initial initial;" src="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" alt="" /></span></a></div>
<div id="comment_box_5368018007836816212_114665228615_3783504" style="float:left;width:311px;">
<div style="padding:0 4px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;font-weight:bold;" href="http://www.facebook.com/profile.php?id=611394693">Abhishek Gupta</a></p>
<div id="text_expose_id_4a7f236e995346a64360292" style="display:inline;padding-left:.4em;">Cheetah bhi peeta hai</div>
</div>
<div style="margin-left:4px;font-size:11px;color:#777777;padding-top:2px;padding-bottom:2px;">30 minutes ago · <a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Click here to remove this comment">Delete</a></div>
</div>
</div>
<div id="comment_5368018007836816212_114665228615_3783539" style="background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#eceff5;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#e5eaf1;clear:left;float:none;margin-bottom:2px;width:350px;background-position:initial initial;padding:6px 4px 0 6px;">
<div style="text-align:left;padding-right:2px;padding-bottom:4px;float:left;height:35px;width:35px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Govind Daga" href="http://www.facebook.com/govind.d"><span style="display:block;background-color:#c4cde0;position:relative;width:32px;height:32px;"><img style="width:32px;height:32px;border:0 initial initial;" src="http://profile.ak.fbcdn.net/v228/1886/87/q708791097_9452.jpg" alt="Govind Daga" /><img style="position:absolute;top:-50px;left:-50px;border:0 initial initial;" src="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" alt="" /></span></a></div>
<div id="comment_box_5368018007836816212_114665228615_3783539" style="float:left;width:311px;">
<div style="padding:0 4px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;font-weight:bold;" href="http://www.facebook.com/govind.d">Govind Daga</a></p>
<div id="text_expose_id_4a7f236e998fa8c91958607" style="display:inline;padding-left:.4em;">Chup chup ke kyun ladkiyon ki cream lagaye&#8230;??? <img src='http://s2.wp.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </div>
</div>
<div style="margin-left:4px;font-size:11px;color:#777777;padding-top:2px;padding-bottom:2px;">29 minutes ago</div>
</div>
</div>
<div id="comment_5368018007836816212_114665228615_3783545" style="background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#eceff5;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#e5eaf1;clear:left;float:none;margin-bottom:2px;width:350px;background-position:initial initial;padding:6px 4px 0 6px;">
<div style="text-align:left;padding-right:2px;padding-bottom:4px;float:left;height:35px;width:35px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Alok Sharma" href="http://www.facebook.com/profile.php?id=571725198"><span style="display:block;background-color:#c4cde0;position:relative;width:32px;height:32px;"><img style="width:32px;height:32px;border:0 initial initial;" src="http://profile.ak.fbcdn.net/v229/114/123/q571725198_2405.jpg" alt="Alok Sharma" /><img style="position:absolute;top:-50px;left:-50px;border:0 initial initial;" src="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" alt="" /></span></a></div>
<div id="comment_box_5368018007836816212_114665228615_3783545" style="float:left;width:311px;">
<div style="padding:0 4px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;font-weight:bold;" href="http://www.facebook.com/profile.php?id=571725198">Alok Sharma</a></p>
<div id="text_expose_id_4a7f236e99cc08458092772" style="display:inline;padding-left:.4em;">Bru-sip lick hmmm&#8230;&#8230;..is that really coffee????</div>
</div>
<div style="margin-left:4px;font-size:11px;color:#777777;padding-top:2px;padding-bottom:2px;">29 minutes ago</div>
</div>
</div>
<div id="comment_5368018007836816212_114665228615_3783559" style="background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#eceff5;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#e5eaf1;clear:left;float:none;margin-bottom:2px;width:350px;background-position:initial initial;padding:6px 4px 0 6px;">
<div style="text-align:left;padding-right:2px;padding-bottom:4px;float:left;height:35px;width:35px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Abhishek Gupta" href="http://www.facebook.com/profile.php?id=611394693"><span style="display:block;background-color:#c4cde0;position:relative;width:32px;height:32px;"><img style="width:32px;height:32px;border:0 initial initial;" src="http://profile.ak.fbcdn.net/v224/959/36/q611394693_4732.jpg" alt="Abhishek Gupta" /><img style="position:absolute;top:-50px;left:-50px;border:0 initial initial;" src="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" alt="" /></span></a></div>
<div id="comment_box_5368018007836816212_114665228615_3783559" style="float:left;width:311px;">
<div style="padding:0 4px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;font-weight:bold;" href="http://www.facebook.com/profile.php?id=611394693">Abhishek Gupta</a></p>
<div id="text_expose_id_4a7f236e9a1ea7f76097430" style="display:inline;padding-left:.4em;">Miss Palanpur&#8230; Radha Ms. Palanpur ban gai&#8230; kitne saare gaavon se log aae the.. Ab toh ye filmein bhi karegi&#8230; Kuch meetha ho jaaye&#8230;</div>
</div>
<div style="margin-left:4px;font-size:11px;color:#777777;padding-top:2px;padding-bottom:2px;">28 minutes ago · <a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Click here to remove this comment">Delete</a></div>
</div>
</div>
<div id="comment_5368018007836816212_114665228615_3783571" style="background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#eceff5;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#e5eaf1;clear:left;float:none;margin-bottom:2px;width:350px;background-position:initial initial;padding:6px 4px 0 6px;">
<div style="text-align:left;padding-right:2px;padding-bottom:4px;float:left;height:35px;width:35px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Alok Sharma" href="http://www.facebook.com/profile.php?id=571725198"><span style="display:block;background-color:#c4cde0;position:relative;width:32px;height:32px;"><img style="width:32px;height:32px;border:0 initial initial;" src="http://profile.ak.fbcdn.net/v229/114/123/q571725198_2405.jpg" alt="Alok Sharma" /><img style="position:absolute;top:-50px;left:-50px;border:0 initial initial;" src="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" alt="" /></span></a></div>
<div id="comment_box_5368018007836816212_114665228615_3783571" style="float:left;width:311px;">
<div style="padding:0 4px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;font-weight:bold;" href="http://www.facebook.com/profile.php?id=571725198">Alok Sharma</a></p>
<div id="text_expose_id_4a7f236e9a62f1696493934" style="display:inline;padding-left:.4em;">Hum chlormint kyun khaatey hain???now if no one knows the reason,stop eating!!why beat the ones who eat:D</div>
</div>
<div style="margin-left:4px;font-size:11px;color:#777777;padding-top:2px;padding-bottom:2px;">27 minutes ago</div>
</div>
</div>
<div id="comment_5368018007836816212_114665228615_3783576" style="background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#eceff5;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#e5eaf1;clear:left;float:none;margin-bottom:2px;width:350px;background-position:initial initial;padding:6px 4px 0 6px;">
<div style="text-align:left;padding-right:2px;padding-bottom:4px;float:left;height:35px;width:35px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Govind Daga" href="http://www.facebook.com/govind.d"><span style="display:block;background-color:#c4cde0;position:relative;width:32px;height:32px;"><img style="width:32px;height:32px;border:0 initial initial;" src="http://profile.ak.fbcdn.net/v228/1886/87/q708791097_9452.jpg" alt="Govind Daga" /><img style="position:absolute;top:-50px;left:-50px;border:0 initial initial;" src="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" alt="" /></span></a></div>
<div id="comment_box_5368018007836816212_114665228615_3783576" style="float:left;width:311px;">
<div style="padding:0 4px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;font-weight:bold;" href="http://www.facebook.com/govind.d">Govind Daga</a></p>
<div id="text_expose_id_4a7f236e9aa582a15666775" style="display:inline;padding-left:.4em;">WHAT ABOUT THE TOILET CLEANING ADS?????? esp. the ones by infamous Aman Verma&#8230; <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </div>
</div>
<div style="margin-left:4px;font-size:11px;color:#777777;padding-top:2px;padding-bottom:2px;">27 minutes ago</div>
</div>
</div>
<div id="comment_5368018007836816212_114665228615_3783593" style="background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#eceff5;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#e5eaf1;clear:left;float:none;margin-bottom:2px;width:350px;background-position:initial initial;padding:6px 4px 0 6px;">
<div style="text-align:left;padding-right:2px;padding-bottom:4px;float:left;height:35px;width:35px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Govind Daga" href="http://www.facebook.com/govind.d"><span style="display:block;background-color:#c4cde0;position:relative;width:32px;height:32px;"><img style="width:32px;height:32px;border:0 initial initial;" src="http://profile.ak.fbcdn.net/v228/1886/87/q708791097_9452.jpg" alt="Govind Daga" /><img style="position:absolute;top:-50px;left:-50px;border:0 initial initial;" src="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" alt="" /></span></a></div>
<div id="comment_box_5368018007836816212_114665228615_3783593" style="float:left;width:311px;">
<div style="padding:0 4px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;font-weight:bold;" href="http://www.facebook.com/govind.d">Govind Daga</a></p>
<div id="text_expose_id_4a7f236e9ae819121966385" style="display:inline;padding-left:.4em;">@ Alok : =))</div>
</div>
<div style="margin-left:4px;font-size:11px;color:#777777;padding-top:2px;padding-bottom:2px;">26 minutes ago</div>
</div>
</div>
<div id="comment_5368018007836816212_114665228615_3783630" style="background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#eceff5;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#e5eaf1;clear:left;float:none;margin-bottom:2px;width:350px;background-position:initial initial;padding:6px 4px 0 6px;">
<div style="text-align:left;padding-right:2px;padding-bottom:4px;float:left;height:35px;width:35px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Alok Sharma" href="http://www.facebook.com/profile.php?id=571725198"><span style="display:block;background-color:#c4cde0;position:relative;width:32px;height:32px;"><img style="width:32px;height:32px;border:0 initial initial;" src="http://profile.ak.fbcdn.net/v229/114/123/q571725198_2405.jpg" alt="Alok Sharma" /><img style="position:absolute;top:-50px;left:-50px;border:0 initial initial;" src="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" alt="" /></span></a></div>
<div id="comment_box_5368018007836816212_114665228615_3783630" style="float:left;width:311px;">
<div style="padding:0 4px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;font-weight:bold;" href="http://www.facebook.com/profile.php?id=571725198">Alok Sharma</a></p>
<div id="text_expose_id_4a7f236e9b2a99b58551562" style="display:inline;padding-left:.4em;">Meetha hai khaana aaj pahli tareekh hai&#8230;&#8230;???now what really is that??!!</div>
</div>
<div style="margin-left:4px;font-size:11px;color:#777777;padding-top:2px;padding-bottom:2px;">25 minutes ago</div>
</div>
</div>
<div id="comment_5368018007836816212_114665228615_3783648" style="background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#eceff5;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#e5eaf1;clear:left;float:none;margin-bottom:2px;width:350px;background-position:initial initial;padding:6px 4px 0 6px;">
<div style="text-align:left;padding-right:2px;padding-bottom:4px;float:left;height:35px;width:35px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Govind Daga" href="http://www.facebook.com/govind.d"><span style="display:block;background-color:#c4cde0;position:relative;width:32px;height:32px;"><img style="width:32px;height:32px;border:0 initial initial;" src="http://profile.ak.fbcdn.net/v228/1886/87/q708791097_9452.jpg" alt="Govind Daga" /><img style="position:absolute;top:-50px;left:-50px;border:0 initial initial;" src="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" alt="" /></span></a></div>
<div id="comment_box_5368018007836816212_114665228615_3783648" style="float:left;width:311px;">
<div style="padding:0 4px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;font-weight:bold;" href="http://www.facebook.com/govind.d">Govind Daga</a></p>
<div id="text_expose_id_4a7f236e9b6c97443894402" style="display:inline;padding-left:.4em;"><span>Tide hai to White hai&#8230; **Swwwwwoooooosssssshhhhh*</span>*</div>
</div>
<div style="margin-left:4px;font-size:11px;color:#777777;padding-top:2px;padding-bottom:2px;">24 minutes ago</div>
</div>
</div>
<div id="comment_5368018007836816212_114665228615_3783665" style="background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#eceff5;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#e5eaf1;clear:left;float:none;margin-bottom:2px;width:350px;background-position:initial initial;padding:6px 4px 0 6px;">
<div style="text-align:left;padding-right:2px;padding-bottom:4px;float:left;height:35px;width:35px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Alok Sharma" href="http://www.facebook.com/profile.php?id=571725198"><span style="display:block;background-color:#c4cde0;position:relative;width:32px;height:32px;"><img style="width:32px;height:32px;border:0 initial initial;" src="http://profile.ak.fbcdn.net/v229/114/123/q571725198_2405.jpg" alt="Alok Sharma" /><img style="position:absolute;top:-50px;left:-50px;border:0 initial initial;" src="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" alt="" /></span></a></div>
<div id="comment_box_5368018007836816212_114665228615_3783665" style="float:left;width:311px;">
<div style="padding:0 4px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;font-weight:bold;" href="http://www.facebook.com/profile.php?id=571725198">Alok Sharma</a></p>
<div id="text_expose_id_4a7f236e9baf42210238099" style="display:inline;padding-left:.4em;">Kal raat&#8230;kal raat maine precaution nahin liya&#8230;.UNWANTED 72&#8230;.</div>
</div>
<div style="margin-left:4px;font-size:11px;color:#777777;padding-top:2px;padding-bottom:2px;">23 minutes ago</div>
</div>
</div>
<div id="comment_5368018007836816212_114665228615_3783679" style="background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#eceff5;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#e5eaf1;clear:left;float:none;margin-bottom:2px;width:350px;background-position:initial initial;padding:6px 4px 0 6px;">
<div style="text-align:left;padding-right:2px;padding-bottom:4px;float:left;height:35px;width:35px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Govind Daga" href="http://www.facebook.com/govind.d"><span style="display:block;background-color:#c4cde0;position:relative;width:32px;height:32px;"><img style="width:32px;height:32px;border:0 initial initial;" src="http://profile.ak.fbcdn.net/v228/1886/87/q708791097_9452.jpg" alt="Govind Daga" /><img style="position:absolute;top:-50px;left:-50px;border:0 initial initial;" src="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" alt="" /></span></a></div>
<div id="comment_box_5368018007836816212_114665228615_3783679" style="float:left;width:311px;">
<div style="padding:0 4px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;font-weight:bold;" href="http://www.facebook.com/govind.d">Govind Daga</a></p>
<div id="text_expose_id_4a7f236e9bf649a62020256" style="display:inline;padding-left:.4em;"><span>&#8216;eeeeeeeeeeeeeeeeeeeeeeeee</span>eeeee&#8217;</div>
</div>
<div style="margin-left:4px;font-size:11px;color:#777777;padding-top:2px;padding-bottom:2px;">22 minutes ago</div>
</div>
</div>
<div id="comment_5368018007836816212_114665228615_3783699" style="background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#eceff5;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#e5eaf1;clear:left;float:none;margin-bottom:2px;width:350px;background-position:initial initial;padding:6px 4px 0 6px;">
<div style="text-align:left;padding-right:2px;padding-bottom:4px;float:left;height:35px;width:35px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Alok Sharma" href="http://www.facebook.com/profile.php?id=571725198"><span style="display:block;background-color:#c4cde0;position:relative;width:32px;height:32px;"><img style="width:32px;height:32px;border:0 initial initial;" src="http://profile.ak.fbcdn.net/v229/114/123/q571725198_2405.jpg" alt="Alok Sharma" /><img style="position:absolute;top:-50px;left:-50px;border:0 initial initial;" src="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" alt="" /></span></a></div>
<div id="comment_box_5368018007836816212_114665228615_3783699" style="float:left;width:311px;">
<div style="padding:0 4px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;font-weight:bold;" href="http://www.facebook.com/profile.php?id=571725198">Alok Sharma</a></p>
<div id="text_expose_id_4a7f236e9c3b67895402181" style="display:inline;padding-left:.4em;">Tedha hai par mera hai&#8230;..is that really kurkure u r talking abt????????</div>
</div>
<div style="margin-left:4px;font-size:11px;color:#777777;padding-top:2px;padding-bottom:2px;">22 minutes ago</div>
</div>
</div>
<div id="comment_5368018007836816212_114665228615_3783726" style="background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#eceff5;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#e5eaf1;clear:left;float:none;margin-bottom:2px;width:350px;background-position:initial initial;padding:6px 4px 0 6px;">
<div style="text-align:left;padding-right:2px;padding-bottom:4px;float:left;height:35px;width:35px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Govind Daga" href="http://www.facebook.com/govind.d"><span style="display:block;background-color:#c4cde0;position:relative;width:32px;height:32px;"><img style="width:32px;height:32px;border:0 initial initial;" src="http://profile.ak.fbcdn.net/v228/1886/87/q708791097_9452.jpg" alt="Govind Daga" /><img style="position:absolute;top:-50px;left:-50px;border:0 initial initial;" src="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" alt="" /></span></a></div>
<div id="comment_box_5368018007836816212_114665228615_3783726" style="float:left;width:311px;">
<div style="padding:0 4px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;font-weight:bold;" href="http://www.facebook.com/govind.d">Govind Daga</a></p>
<div id="text_expose_id_4a7f236e9c83d5a94209714" style="display:inline;padding-left:.4em;">&#8220;Paragon lagu babuji&#8221; &#8212; Pairon ke liye Paragon!!!</div>
</div>
<div style="margin-left:4px;font-size:11px;color:#777777;padding-top:2px;padding-bottom:2px;">21 minutes ago</div>
</div>
</div>
<div id="comment_5368018007836816212_114665228615_3783740" style="background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#eceff5;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#e5eaf1;clear:left;float:none;margin-bottom:2px;width:350px;background-position:initial initial;padding:6px 4px 0 6px;">
<div style="text-align:left;padding-right:2px;padding-bottom:4px;float:left;height:35px;width:35px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Alok Sharma" href="http://www.facebook.com/profile.php?id=571725198"><span style="display:block;background-color:#c4cde0;position:relative;width:32px;height:32px;"><img style="width:32px;height:32px;border:0 initial initial;" src="http://profile.ak.fbcdn.net/v229/114/123/q571725198_2405.jpg" alt="Alok Sharma" /><img style="position:absolute;top:-50px;left:-50px;border:0 initial initial;" src="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" alt="" /></span></a></div>
<div id="comment_box_5368018007836816212_114665228615_3783740" style="float:left;width:311px;">
<div style="padding:0 4px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;font-weight:bold;" href="http://www.facebook.com/profile.php?id=571725198">Alok Sharma</a></p>
<div id="text_expose_id_4a7f236e9ccbb7904428729" style="display:inline;padding-left:.4em;">Set wet&#8230;.and the styles they show r like eeeeeeeeeeuk!!!just wid hairstyle ladki mil jaayegi????</div>
</div>
<div style="margin-left:4px;font-size:11px;color:#777777;padding-top:2px;padding-bottom:2px;">20 minutes ago</div>
</div>
</div>
<div id="comment_5368018007836816212_114665228615_3783775" style="background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#eceff5;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#e5eaf1;clear:left;float:none;margin-bottom:2px;width:350px;background-position:initial initial;padding:6px 4px 0 6px;">
<div style="text-align:left;padding-right:2px;padding-bottom:4px;float:left;height:35px;width:35px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Govind Daga" href="http://www.facebook.com/govind.d"><span style="display:block;background-color:#c4cde0;position:relative;width:32px;height:32px;"><img style="width:32px;height:32px;border:0 initial initial;" src="http://profile.ak.fbcdn.net/v228/1886/87/q708791097_9452.jpg" alt="Govind Daga" /><img style="position:absolute;top:-50px;left:-50px;border:0 initial initial;" src="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" alt="" /></span></a></div>
<div id="comment_box_5368018007836816212_114665228615_3783775" style="float:left;width:311px;">
<div style="padding:0 4px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;font-weight:bold;" href="http://www.facebook.com/govind.d">Govind Daga</a></p>
<div id="text_expose_id_4a7f236e9d1240571361934" style="display:inline;padding-left:.4em;">Fair and Lovely Ayurvedic: A woman becomes supermodel after her father gives ayurvedic treatment. Why did the father not give her the same treatment earlier?</div>
</div>
<div style="margin-left:4px;font-size:11px;color:#777777;padding-top:2px;padding-bottom:2px;">18 minutes ago</div>
</div>
</div>
<div id="comment_5368018007836816212_114665228615_3783809" style="background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#eceff5;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#e5eaf1;clear:left;float:none;margin-bottom:2px;width:350px;background-position:initial initial;padding:6px 4px 0 6px;">
<div style="text-align:left;padding-right:2px;padding-bottom:4px;float:left;height:35px;width:35px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Alok Sharma" href="http://www.facebook.com/profile.php?id=571725198"><span style="display:block;background-color:#c4cde0;position:relative;width:32px;height:32px;"><img style="width:32px;height:32px;border:0 initial initial;" src="http://profile.ak.fbcdn.net/v229/114/123/q571725198_2405.jpg" alt="Alok Sharma" /><img style="position:absolute;top:-50px;left:-50px;border:0 initial initial;" src="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" alt="" /></span></a></div>
<div id="comment_box_5368018007836816212_114665228615_3783809" style="float:left;width:311px;">
<div style="padding:0 4px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;font-weight:bold;" href="http://www.facebook.com/profile.php?id=571725198">Alok Sharma</a></p>
<div id="text_expose_id_4a7f236e9d5891717395489" style="display:inline;padding-left:.4em;">Best ad-and really nice-mentos-dimag ki batti jala de-the donkey monkey thing!</div>
</div>
<div style="margin-left:4px;font-size:11px;color:#777777;padding-top:2px;padding-bottom:2px;">17 minutes ago</div>
</div>
</div>
<div id="comment_5368018007836816212_114665228615_3783821" style="background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#eceff5;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#e5eaf1;clear:left;float:none;margin-bottom:2px;width:350px;background-position:initial initial;padding:6px 4px 0 6px;">
<div style="text-align:left;padding-right:2px;padding-bottom:4px;float:left;height:35px;width:35px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Abhishek Gupta" href="http://www.facebook.com/profile.php?id=611394693"><span style="display:block;background-color:#c4cde0;position:relative;width:32px;height:32px;"><img style="width:32px;height:32px;border:0 initial initial;" src="http://profile.ak.fbcdn.net/v224/959/36/q611394693_4732.jpg" alt="Abhishek Gupta" /><img style="position:absolute;top:-50px;left:-50px;border:0 initial initial;" src="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" alt="" /></span></a></div>
<div id="comment_box_5368018007836816212_114665228615_3783821" style="float:left;width:311px;">
<div style="padding:0 4px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;font-weight:bold;" href="http://www.facebook.com/profile.php?id=611394693">Abhishek Gupta</a></p>
<div id="text_expose_id_4a7f236e9dbe22078724624" style="display:inline;padding-left:.4em;">Swagat Baniyaan:: A bearish kind of man…I call him that coz of hair on his body , wears swaagat and a lady in backgroundg says ”Peheniye Swaagat Shriman&#8221;</div>
</div>
<div style="margin-left:4px;font-size:11px;color:#777777;padding-top:2px;padding-bottom:2px;">16 minutes ago · <a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Click here to remove this comment">Delete</a></div>
</div>
</div>
<div id="comment_5368018007836816212_114665228615_3783850" style="background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#eceff5;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#e5eaf1;clear:left;float:none;margin-bottom:2px;width:350px;background-position:initial initial;padding:6px 4px 0 6px;">
<div style="text-align:left;padding-right:2px;padding-bottom:4px;float:left;height:35px;width:35px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Govind Daga" href="http://www.facebook.com/govind.d"><span style="display:block;background-color:#c4cde0;position:relative;width:32px;height:32px;"><img style="width:32px;height:32px;border:0 initial initial;" src="http://profile.ak.fbcdn.net/v228/1886/87/q708791097_9452.jpg" alt="Govind Daga" /><img style="position:absolute;top:-50px;left:-50px;border:0 initial initial;" src="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" alt="" /></span></a></div>
<div id="comment_box_5368018007836816212_114665228615_3783850" style="float:left;width:311px;">
<div style="padding:0 4px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;font-weight:bold;" href="http://www.facebook.com/govind.d">Govind Daga</a></p>
<div id="text_expose_id_4a7f236e9e08e9520249145" style="display:inline;padding-left:.4em;">Best is the Naukri.com wala ad : HARI SADU : H for Hitler, A for arrogant, R for Rascal, I for Idiot&#8230;. Now SADU&#8230;</div>
</div>
<div style="margin-left:4px;font-size:11px;color:#777777;padding-top:2px;padding-bottom:2px;">15 minutes ago</div>
</div>
</div>
<div id="comment_5368018007836816212_114665228615_3783919" style="background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#eceff5;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#e5eaf1;clear:left;float:none;margin-bottom:2px;width:350px;background-position:initial initial;padding:6px 4px 0 6px;">
<div style="text-align:left;padding-right:2px;padding-bottom:4px;float:left;height:35px;width:35px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Alok Sharma" href="http://www.facebook.com/profile.php?id=571725198"><span style="display:block;background-color:#c4cde0;position:relative;width:32px;height:32px;"><img style="width:32px;height:32px;border:0 initial initial;" src="http://profile.ak.fbcdn.net/v229/114/123/q571725198_2405.jpg" alt="Alok Sharma" /><img style="position:absolute;top:-50px;left:-50px;border:0 initial initial;" src="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" alt="" /></span></a></div>
<div id="comment_box_5368018007836816212_114665228615_3783919" style="float:left;width:311px;">
<div style="padding:0 4px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;font-weight:bold;" href="http://www.facebook.com/profile.php?id=571725198">Alok Sharma</a></p>
<div id="text_expose_id_4a7f236e9e5058800719476" style="display:inline;padding-left:.4em;">Santan dosh&#8230;sautan ka lafda&#8230;business problems&#8230;health samasyaen&#8230;call karein baba pasha&#8230;fee only 100rs&#8230;.</div>
</div>
<div style="margin-left:4px;font-size:11px;color:#777777;padding-top:2px;padding-bottom:2px;">13 minutes ago</div>
</div>
</div>
<div id="comment_5368018007836816212_114665228615_3783933" style="background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#eceff5;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#e5eaf1;clear:left;float:none;margin-bottom:2px;width:350px;background-position:initial initial;padding:6px 4px 0 6px;">
<div style="text-align:left;padding-right:2px;padding-bottom:4px;float:left;height:35px;width:35px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Abhishek Gupta" href="http://www.facebook.com/profile.php?id=611394693"><span style="display:block;background-color:#c4cde0;position:relative;width:32px;height:32px;"><img style="width:32px;height:32px;border:0 initial initial;" src="http://profile.ak.fbcdn.net/v224/959/36/q611394693_4732.jpg" alt="Abhishek Gupta" /><img style="position:absolute;top:-50px;left:-50px;border:0 initial initial;" src="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" alt="" /></span></a></div>
<div id="comment_box_5368018007836816212_114665228615_3783933" style="float:left;width:311px;">
<div style="padding:0 4px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;font-weight:bold;" href="http://www.facebook.com/profile.php?id=611394693">Abhishek Gupta</a></p>
<div id="text_expose_id_4a7f236e9eb0b2415546306" style="display:inline;padding-left:.4em;">Voltas AC : India ka AC , Korea ka nai</div>
</div>
<div style="margin-left:4px;font-size:11px;color:#777777;padding-top:2px;padding-bottom:2px;">12 minutes ago · <a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Click here to remove this comment">Delete</a></div>
</div>
</div>
<div id="comment_5368018007836816212_114665228615_3783941" style="background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#eceff5;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#e5eaf1;clear:left;float:none;margin-bottom:2px;width:350px;background-position:initial initial;padding:6px 4px 0 6px;">
<div style="text-align:left;padding-right:2px;padding-bottom:4px;float:left;height:35px;width:35px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Alok Sharma" href="http://www.facebook.com/profile.php?id=571725198"><span style="display:block;background-color:#c4cde0;position:relative;width:32px;height:32px;"><img style="width:32px;height:32px;border:0 initial initial;" src="http://profile.ak.fbcdn.net/v229/114/123/q571725198_2405.jpg" alt="Alok Sharma" /><img style="position:absolute;top:-50px;left:-50px;border:0 initial initial;" src="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" alt="" /></span></a></div>
<div id="comment_box_5368018007836816212_114665228615_3783941" style="float:left;width:311px;">
<div style="padding:0 4px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;font-weight:bold;" href="http://www.facebook.com/profile.php?id=571725198">Alok Sharma</a></p>
<div id="text_expose_id_4a7f236e9ef6d4634696050" style="display:inline;padding-left:.4em;">That&#8217;s nice!true</div>
</div>
<div style="margin-left:4px;font-size:11px;color:#777777;padding-top:2px;padding-bottom:2px;">12 minutes ago</div>
</div>
</div>
<div id="comment_5368018007836816212_114665228615_3783973" style="background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#eceff5;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#e5eaf1;clear:left;float:none;margin-bottom:2px;width:350px;background-position:initial initial;padding:6px 4px 0 6px;">
<div style="text-align:left;padding-right:2px;padding-bottom:4px;float:left;height:35px;width:35px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Alok Sharma" href="http://www.facebook.com/profile.php?id=571725198"><span style="display:block;background-color:#c4cde0;position:relative;width:32px;height:32px;"><img style="width:32px;height:32px;border:0 initial initial;" src="http://profile.ak.fbcdn.net/v229/114/123/q571725198_2405.jpg" alt="Alok Sharma" /><img style="position:absolute;top:-50px;left:-50px;border:0 initial initial;" src="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" alt="" /></span></a></div>
<div id="comment_box_5368018007836816212_114665228615_3783973" style="float:left;width:311px;">
<div style="padding:0 4px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;font-weight:bold;" href="http://www.facebook.com/profile.php?id=571725198">Alok Sharma</a></p>
<div id="text_expose_id_4a7f236e9f3b62a98037577" style="display:inline;padding-left:.4em;">Walk when you talk..</div>
</div>
<div style="margin-left:4px;font-size:11px;color:#777777;padding-top:2px;padding-bottom:2px;">11 minutes ago</div>
</div>
</div>
<div id="comment_5368018007836816212_114665228615_3784004" style="background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#eceff5;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#e5eaf1;clear:left;float:none;margin-bottom:2px;width:350px;background-position:initial initial;padding:6px 4px 0 6px;">
<div style="text-align:left;padding-right:2px;padding-bottom:4px;float:left;height:35px;width:35px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Alok Sharma" href="http://www.facebook.com/profile.php?id=571725198"><span style="display:block;background-color:#c4cde0;position:relative;width:32px;height:32px;"><img style="width:32px;height:32px;border:0 initial initial;" src="http://profile.ak.fbcdn.net/v229/114/123/q571725198_2405.jpg" alt="Alok Sharma" /><img style="position:absolute;top:-50px;left:-50px;border:0 initial initial;" src="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" alt="" /></span></a></div>
<div id="comment_box_5368018007836816212_114665228615_3784004" style="float:left;width:311px;">
<div style="padding:0 4px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;font-weight:bold;" href="http://www.facebook.com/profile.php?id=571725198">Alok Sharma</a></p>
<div id="text_expose_id_4a7f236e9f7f05395942242" style="display:inline;padding-left:.4em;">Chocolate axe??????just by spraying any deo???girls are so cheap???literally??</div>
</div>
<div style="margin-left:4px;font-size:11px;color:#777777;padding-top:2px;padding-bottom:2px;">9 minutes ago</div>
</div>
</div>
<div id="comment_5368018007836816212_114665228615_3784020" style="background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#eceff5;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#e5eaf1;clear:left;float:none;margin-bottom:2px;width:350px;background-position:initial initial;padding:6px 4px 0 6px;">
<div style="text-align:left;padding-right:2px;padding-bottom:4px;float:left;height:35px;width:35px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Govind Daga" href="http://www.facebook.com/govind.d"><span style="display:block;background-color:#c4cde0;position:relative;width:32px;height:32px;"><img style="width:32px;height:32px;border:0 initial initial;" src="http://profile.ak.fbcdn.net/v228/1886/87/q708791097_9452.jpg" alt="Govind Daga" /><img style="position:absolute;top:-50px;left:-50px;border:0 initial initial;" src="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" alt="" /></span></a></div>
<div id="comment_box_5368018007836816212_114665228615_3784020" style="float:left;width:311px;">
<div style="padding:0 4px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;font-weight:bold;" href="http://www.facebook.com/govind.d">Govind Daga</a></p>
<div id="text_expose_id_4a7f236e9fc5e0069750011" style="display:inline;padding-left:.4em;">The English Guru ads&#8230;. Man have sat through the entire ads&#8230;.. <img src='http://s2.wp.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </div>
</div>
<div style="margin-left:4px;font-size:11px;color:#777777;padding-top:2px;padding-bottom:2px;">8 minutes ago</div>
</div>
</div>
<div id="comment_5368018007836816212_114665228615_3784037" style="background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#eceff5;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#e5eaf1;clear:left;float:none;margin-bottom:2px;width:350px;background-position:initial initial;padding:6px 4px 0 6px;">
<div style="text-align:left;padding-right:2px;padding-bottom:4px;float:left;height:35px;width:35px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Alok Sharma" href="http://www.facebook.com/profile.php?id=571725198"><span style="display:block;background-color:#c4cde0;position:relative;width:32px;height:32px;"><img style="width:32px;height:32px;border:0 initial initial;" src="http://profile.ak.fbcdn.net/v229/114/123/q571725198_2405.jpg" alt="Alok Sharma" /><img style="position:absolute;top:-50px;left:-50px;border:0 initial initial;" src="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" alt="" /></span></a></div>
<div id="comment_box_5368018007836816212_114665228615_3784037" style="float:left;width:311px;">
<div style="padding:0 4px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;font-weight:bold;" href="http://www.facebook.com/profile.php?id=571725198">Alok Sharma</a></p>
<div id="text_expose_id_4a7f236ea00f24204657506" style="display:inline;padding-left:.4em;">Haldiram prabhuji ke????kya;)</div>
</div>
<div style="margin-left:4px;font-size:11px;color:#777777;padding-top:2px;padding-bottom:2px;">7 minutes ago</div>
</div>
</div>
<div id="comment_5368018007836816212_114665228615_3784056" style="background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#eceff5;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#e5eaf1;clear:left;float:none;margin-bottom:2px;width:350px;background-position:initial initial;padding:6px 4px 0 6px;">
<div style="text-align:left;padding-right:2px;padding-bottom:4px;float:left;height:35px;width:35px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Govind Daga" href="http://www.facebook.com/govind.d"><span style="display:block;background-color:#c4cde0;position:relative;width:32px;height:32px;"><img style="width:32px;height:32px;border:0 initial initial;" src="http://profile.ak.fbcdn.net/v228/1886/87/q708791097_9452.jpg" alt="Govind Daga" /><img style="position:absolute;top:-50px;left:-50px;border:0 initial initial;" src="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" alt="" /></span></a></div>
<div id="comment_box_5368018007836816212_114665228615_3784056" style="float:left;width:311px;">
<div style="padding:0 4px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;font-weight:bold;" href="http://www.facebook.com/govind.d">Govind Daga</a></p>
<div id="text_expose_id_4a7f236ea05757706396592" style="display:inline;padding-left:.4em;">lolzzzzz&#8230;..</div>
</div>
<div style="margin-left:4px;font-size:11px;color:#777777;padding-top:2px;padding-bottom:2px;">7 minutes ago</div>
</div>
</div>
<div id="comment_5368018007836816212_114665228615_3784102" style="background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#eceff5;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#e5eaf1;clear:left;float:none;margin-bottom:2px;width:350px;background-position:initial initial;padding:6px 4px 0 6px;">
<div style="text-align:left;padding-right:2px;padding-bottom:4px;float:left;height:35px;width:35px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Govind Daga" href="http://www.facebook.com/govind.d"><span style="display:block;background-color:#c4cde0;position:relative;width:32px;height:32px;"><img style="width:32px;height:32px;border:0 initial initial;" src="http://profile.ak.fbcdn.net/v228/1886/87/q708791097_9452.jpg" alt="Govind Daga" /><img style="position:absolute;top:-50px;left:-50px;border:0 initial initial;" src="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" alt="" /></span></a></div>
<div id="comment_box_5368018007836816212_114665228615_3784102" style="float:left;width:311px;">
<div style="padding:0 4px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;font-weight:bold;" href="http://www.facebook.com/govind.d">Govind Daga</a></p>
<div id="text_expose_id_4a7f236ea09b39741368070" style="display:inline;padding-left:.4em;">Jab hasin ke mauke aate hain&#8230; fatfatya kyun aap chalate hain.???</div>
</div>
<div style="margin-left:4px;font-size:11px;color:#777777;padding-top:2px;padding-bottom:2px;">6 minutes ago</div>
</div>
</div>
<div id="comment_5368018007836816212_114665228615_3784149" style="background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#eceff5;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#e5eaf1;clear:left;float:none;margin-bottom:2px;width:350px;background-position:initial initial;padding:6px 4px 0 6px;">
<div style="text-align:left;padding-right:2px;padding-bottom:4px;float:left;height:35px;width:35px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Abhishek Gupta" href="http://www.facebook.com/profile.php?id=611394693"><span style="display:block;background-color:#c4cde0;position:relative;width:32px;height:32px;"><img style="width:32px;height:32px;border:0 initial initial;" src="http://profile.ak.fbcdn.net/v224/959/36/q611394693_4732.jpg" alt="Abhishek Gupta" /><img style="position:absolute;top:-50px;left:-50px;border:0 initial initial;" src="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" alt="" /></span></a></div>
<div id="comment_box_5368018007836816212_114665228615_3784149" style="float:left;width:311px;">
<div style="padding:0 4px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;font-weight:bold;" href="http://www.facebook.com/profile.php?id=611394693">Abhishek Gupta</a></p>
<div id="text_expose_id_4a7f236ea106a0d55980900" style="display:inline;padding-left:.4em;">safffedi tujhe salaam..safedi tujhe salaam.</div>
</div>
<div style="margin-left:4px;font-size:11px;color:#777777;padding-top:2px;padding-bottom:2px;">3 minutes ago · <a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Click here to remove this comment">Delete</a></div>
</div>
</div>
<div id="comment_5368018007836816212_114665228615_3784179" style="background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#eceff5;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#e5eaf1;clear:left;float:none;margin-bottom:2px;width:350px;background-position:initial initial;padding:6px 4px 0 6px;">
<div style="text-align:left;padding-right:2px;padding-bottom:4px;float:left;height:35px;width:35px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Govind Daga" href="http://www.facebook.com/govind.d"><span style="display:block;background-color:#c4cde0;position:relative;width:32px;height:32px;"><img style="width:32px;height:32px;border:0 initial initial;" src="http://profile.ak.fbcdn.net/v228/1886/87/q708791097_9452.jpg" alt="Govind Daga" /><img style="position:absolute;top:-50px;left:-50px;border:0 initial initial;" src="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" alt="" /></span></a></div>
<div id="comment_box_5368018007836816212_114665228615_3784179" style="float:left;width:311px;">
<div style="padding:0 4px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;font-weight:bold;" href="http://www.facebook.com/govind.d">Govind Daga</a></p>
<div id="text_expose_id_4a7f236ea155c5f39028292" style="display:inline;padding-left:.4em;">26 comments to 100~~!!!</div>
</div>
<div style="margin-left:4px;font-size:11px;color:#777777;padding-top:2px;padding-bottom:2px;">2 minutes ago</div>
</div>
</div>
<div id="comment_5368018007836816212_114665228615_3784211" style="background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#eceff5;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#e5eaf1;clear:left;float:none;margin-bottom:2px;width:350px;background-position:initial initial;padding:6px 4px 0 6px;">
<div style="text-align:left;padding-right:2px;padding-bottom:4px;float:left;height:35px;width:35px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Abhishek Gupta" href="http://www.facebook.com/profile.php?id=611394693"><span style="display:block;background-color:#c4cde0;position:relative;width:32px;height:32px;"><img style="width:32px;height:32px;border:0 initial initial;" src="http://profile.ak.fbcdn.net/v224/959/36/q611394693_4732.jpg" alt="Abhishek Gupta" /><img style="position:absolute;top:-50px;left:-50px;border:0 initial initial;" src="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" alt="" /></span></a></div>
<div id="comment_box_5368018007836816212_114665228615_3784211" style="float:left;width:311px;">
<div style="padding:0 4px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;font-weight:bold;" href="http://www.facebook.com/profile.php?id=611394693">Abhishek Gupta</a></p>
<div id="text_expose_id_4a7f236ea1b473503144536" style="display:inline;padding-left:.4em;">hey put this to your blog , titled Worst Tele-Ads</div>
</div>
<div style="margin-left:4px;font-size:11px;color:#777777;padding-top:2px;padding-bottom:2px;">about a minute ago · <a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Click here to remove this comment">Delete</a></div>
</div>
</div>
<div id="comment_5368018007836816212_114665228615_3784242" style="background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#eceff5;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#e5eaf1;clear:left;float:none;margin-bottom:2px;width:350px;background-position:initial initial;padding:6px 4px 0 6px;">
<div style="text-align:left;padding-right:2px;padding-bottom:4px;float:left;height:35px;width:35px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;" title="Govind Daga" href="http://www.facebook.com/govind.d"><span style="display:block;background-color:#c4cde0;position:relative;width:32px;height:32px;"><img style="width:32px;height:32px;border:0 initial initial;" src="http://profile.ak.fbcdn.net/v228/1886/87/q708791097_9452.jpg" alt="Govind Daga" /><img style="position:absolute;top:-50px;left:-50px;border:0 initial initial;" src="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" alt="" /></span></a></div>
<div id="comment_box_5368018007836816212_114665228615_3784242" style="float:left;width:311px;">
<div style="padding:0 4px;"><a style="cursor:pointer;color:#3b5998;text-decoration:none;font-weight:bold;" href="http://www.facebook.com/govind.d">Govind Daga</a></p>
<div id="text_expose_id_4a7f236ea200a9a44025414" style="display:inline;padding-left:.4em;">Yeah&#8230; Was thinking about it&#8230; And credits to the contributors too&#8230; <img src='http://s2.wp.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </div>
</div>
<div style="margin-left:4px;font-size:11px;color:#777777;padding-top:2px;padding-bottom:2px;">14 seconds ago</div>
</div>
</div>
</div>
</div>
<p><span style="color:#333333;"><strong><span style="font-weight:normal;"><br />
</span></strong></span></p>
<div id="comment_5368018007836816212_114665228615_3781742" style="background-image:initial;background-repeat:initial;background-attachment:initial;background-color:#eceff5;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#e5eaf1;clear:left;float:none;margin-bottom:2px;width:350px;background-position:initial initial;padding:6px 4px 0 6px;">
<div style="text-align:left;"></div>
<div style="text-align:left;">All this went on for about an hour and half till we decided &#8211; lets stop and make this PIECE OF ART available to AAM JANTA through my blog.</div>
</div>
<p style="text-align:left;">Credits : Govind , Me , Alok and Piu</p>
<p style="text-align:left;">CopyLeft &#8211; All rights unreserved</p>
<p style="text-align:left;">
<p style="text-align:left;">
<p style="text-align:left;">
<p style="text-align:left;">
<p style="text-align:left;">
<p style="text-align:left;">
<p style="text-align:left;">
<p style="text-align:left;">
<p style="text-align:left;">
<p style="text-align:left;">
<p style="text-align:left;">
<p style="text-align:left;">
<p style="text-align:left;">
<p style="text-align:left;">
<p style="text-align:left;">
<p style="text-align:left;">
<p style="text-align:left;">
<p style="text-align:left;">
<p style="text-align:left;">
<p style="text-align:left;">
<p style="text-align:left;">
<p style="text-align:left;">
<p style="text-align:left;">
<p style="text-align:left;">
<p style="text-align:left;">
<p style="text-align:left;">
<p style="text-align:left;">
<p style="text-align:left;">
<p style="text-align:left;">
<p style="text-align:left;">
<p style="text-align:left;">
<p style="text-align:left;">
<p style="text-align:left;">
<p style="text-align:left;">
<p style="text-align:left;">
<p style="text-align:left;">
<p style="text-align:left;">
<p style="text-align:left;">
<p style="text-align:left;">
<p style="text-align:left;">
<p style="text-align:left;">
<p style="text-align:left;">
<p style="text-align:left;">
<p style="text-align:left;">
<p style="text-align:left;">
<p style="text-align:left;">
<p style="text-align:left;">
<p style="text-align:left;">Credits :</p>
<p style="text-align:left;">1. Govind Daga (Initiator)</p>
<p style="text-align:left;">2.Abhishek Gupta</p>
<p style="text-align:left;">3.Alok Sharma</p>
<p style="text-align:left;">4.Piu Chatterjee</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/abhishekin.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/abhishekin.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/abhishekin.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/abhishekin.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/abhishekin.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/abhishekin.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/abhishekin.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/abhishekin.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/abhishekin.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/abhishekin.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/abhishekin.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/abhishekin.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/abhishekin.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/abhishekin.wordpress.com/120/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=abhishekin.wordpress.com&amp;blog=7498267&amp;post=120&amp;subd=abhishekin&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://abhishekin.wordpress.com/2009/08/09/kya-apke-toothpaste-me-namak-hai-i-love-facebook/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/87b42155de45c3b019a8196b3669bb50?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Nishu</media:title>
		</media:content>

		<media:content url="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" medium="image" />

		<media:content url="http://profile.ak.fbcdn.net/v229/114/123/q571725198_2405.jpg" medium="image">
			<media:title type="html">Alok Sharma</media:title>
		</media:content>

		<media:content url="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" medium="image" />

		<media:content url="http://static.ak.fbcdn.net/pics/q_silhouette.gif" medium="image">
			<media:title type="html">Richi Parasrampuria</media:title>
		</media:content>

		<media:content url="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" medium="image" />

		<media:content url="http://profile.ak.fbcdn.net/v228/1886/87/q708791097_9452.jpg" medium="image">
			<media:title type="html">Govind Daga</media:title>
		</media:content>

		<media:content url="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" medium="image" />

		<media:content url="http://profile.ak.fbcdn.net/v229/114/123/q571725198_2405.jpg" medium="image">
			<media:title type="html">Alok Sharma</media:title>
		</media:content>

		<media:content url="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" medium="image" />

		<media:content url="http://profile.ak.fbcdn.net/v228/1886/87/q708791097_9452.jpg" medium="image">
			<media:title type="html">Govind Daga</media:title>
		</media:content>

		<media:content url="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" medium="image" />

		<media:content url="http://profile.ak.fbcdn.net/v224/959/36/q611394693_4732.jpg" medium="image">
			<media:title type="html">Abhishek Gupta</media:title>
		</media:content>

		<media:content url="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" medium="image" />

		<media:content url="http://profile.ak.fbcdn.net/v224/959/36/q611394693_4732.jpg" medium="image">
			<media:title type="html">Abhishek Gupta</media:title>
		</media:content>

		<media:content url="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" medium="image" />

		<media:content url="http://profile.ak.fbcdn.net/v228/1886/87/q708791097_9452.jpg" medium="image">
			<media:title type="html">Govind Daga</media:title>
		</media:content>

		<media:content url="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" medium="image" />

		<media:content url="http://profile.ak.fbcdn.net/v224/959/36/q611394693_4732.jpg" medium="image">
			<media:title type="html">Abhishek Gupta</media:title>
		</media:content>

		<media:content url="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" medium="image" />

		<media:content url="http://profile.ak.fbcdn.net/v228/1886/87/q708791097_9452.jpg" medium="image">
			<media:title type="html">Govind Daga</media:title>
		</media:content>

		<media:content url="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" medium="image" />

		<media:content url="http://profile.ak.fbcdn.net/v228/1886/87/q708791097_9452.jpg" medium="image">
			<media:title type="html">Govind Daga</media:title>
		</media:content>

		<media:content url="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" medium="image" />

		<media:content url="http://profile.ak.fbcdn.net/v224/959/36/q611394693_4732.jpg" medium="image">
			<media:title type="html">Abhishek Gupta</media:title>
		</media:content>

		<media:content url="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" medium="image" />

		<media:content url="http://profile.ak.fbcdn.net/v228/1886/87/q708791097_9452.jpg" medium="image">
			<media:title type="html">Govind Daga</media:title>
		</media:content>

		<media:content url="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" medium="image" />

		<media:content url="http://profile.ak.fbcdn.net/v224/959/36/q611394693_4732.jpg" medium="image">
			<media:title type="html">Abhishek Gupta</media:title>
		</media:content>

		<media:content url="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" medium="image" />

		<media:content url="http://profile.ak.fbcdn.net/v228/1886/87/q708791097_9452.jpg" medium="image">
			<media:title type="html">Govind Daga</media:title>
		</media:content>

		<media:content url="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" medium="image" />

		<media:content url="http://profile.ak.fbcdn.net/v224/959/36/q611394693_4732.jpg" medium="image">
			<media:title type="html">Abhishek Gupta</media:title>
		</media:content>

		<media:content url="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" medium="image" />

		<media:content url="http://profile.ak.fbcdn.net/v228/1886/87/q708791097_9452.jpg" medium="image">
			<media:title type="html">Govind Daga</media:title>
		</media:content>

		<media:content url="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" medium="image" />

		<media:content url="http://profile.ak.fbcdn.net/v224/959/36/q611394693_4732.jpg" medium="image">
			<media:title type="html">Abhishek Gupta</media:title>
		</media:content>

		<media:content url="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" medium="image" />

		<media:content url="http://profile.ak.fbcdn.net/v228/1886/87/q708791097_9452.jpg" medium="image">
			<media:title type="html">Govind Daga</media:title>
		</media:content>

		<media:content url="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" medium="image" />

		<media:content url="http://profile.ak.fbcdn.net/v224/959/36/q611394693_4732.jpg" medium="image">
			<media:title type="html">Abhishek Gupta</media:title>
		</media:content>

		<media:content url="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" medium="image" />

		<media:content url="http://profile.ak.fbcdn.net/v224/959/36/q611394693_4732.jpg" medium="image">
			<media:title type="html">Abhishek Gupta</media:title>
		</media:content>

		<media:content url="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" medium="image" />

		<media:content url="http://profile.ak.fbcdn.net/v228/1886/87/q708791097_9452.jpg" medium="image">
			<media:title type="html">Govind Daga</media:title>
		</media:content>

		<media:content url="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" medium="image" />

		<media:content url="http://profile.ak.fbcdn.net/v224/959/36/q611394693_4732.jpg" medium="image">
			<media:title type="html">Abhishek Gupta</media:title>
		</media:content>

		<media:content url="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" medium="image" />

		<media:content url="http://profile.ak.fbcdn.net/v228/1886/87/q708791097_9452.jpg" medium="image">
			<media:title type="html">Govind Daga</media:title>
		</media:content>

		<media:content url="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" medium="image" />

		<media:content url="http://profile.ak.fbcdn.net/v224/959/36/q611394693_4732.jpg" medium="image">
			<media:title type="html">Abhishek Gupta</media:title>
		</media:content>

		<media:content url="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" medium="image" />

		<media:content url="http://profile.ak.fbcdn.net/v228/1886/87/q708791097_9452.jpg" medium="image">
			<media:title type="html">Govind Daga</media:title>
		</media:content>

		<media:content url="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" medium="image" />

		<media:content url="http://profile.ak.fbcdn.net/v229/114/123/q571725198_2405.jpg" medium="image">
			<media:title type="html">Alok Sharma</media:title>
		</media:content>

		<media:content url="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" medium="image" />

		<media:content url="http://profile.ak.fbcdn.net/v228/1886/87/q708791097_9452.jpg" medium="image">
			<media:title type="html">Govind Daga</media:title>
		</media:content>

		<media:content url="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" medium="image" />

		<media:content url="http://profile.ak.fbcdn.net/v229/114/123/q571725198_2405.jpg" medium="image">
			<media:title type="html">Alok Sharma</media:title>
		</media:content>

		<media:content url="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" medium="image" />

		<media:content url="http://profile.ak.fbcdn.net/v225/1331/68/q1070122674_3122.jpg" medium="image">
			<media:title type="html">Piu Chatterjee</media:title>
		</media:content>

		<media:content url="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" medium="image" />

		<media:content url="http://profile.ak.fbcdn.net/v228/1886/87/q708791097_9452.jpg" medium="image">
			<media:title type="html">Govind Daga</media:title>
		</media:content>

		<media:content url="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" medium="image" />

		<media:content url="http://profile.ak.fbcdn.net/v229/114/123/q571725198_2405.jpg" medium="image">
			<media:title type="html">Alok Sharma</media:title>
		</media:content>

		<media:content url="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" medium="image" />

		<media:content url="http://profile.ak.fbcdn.net/v224/959/36/q611394693_4732.jpg" medium="image">
			<media:title type="html">Abhishek Gupta</media:title>
		</media:content>

		<media:content url="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" medium="image" />

		<media:content url="http://profile.ak.fbcdn.net/v228/1886/87/q708791097_9452.jpg" medium="image">
			<media:title type="html">Govind Daga</media:title>
		</media:content>

		<media:content url="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" medium="image" />

		<media:content url="http://profile.ak.fbcdn.net/v229/114/123/q571725198_2405.jpg" medium="image">
			<media:title type="html">Alok Sharma</media:title>
		</media:content>

		<media:content url="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" medium="image" />

		<media:content url="http://profile.ak.fbcdn.net/v224/959/36/q611394693_4732.jpg" medium="image">
			<media:title type="html">Abhishek Gupta</media:title>
		</media:content>

		<media:content url="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" medium="image" />

		<media:content url="http://profile.ak.fbcdn.net/v228/1886/87/q708791097_9452.jpg" medium="image">
			<media:title type="html">Govind Daga</media:title>
		</media:content>

		<media:content url="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" medium="image" />

		<media:content url="http://profile.ak.fbcdn.net/v229/114/123/q571725198_2405.jpg" medium="image">
			<media:title type="html">Alok Sharma</media:title>
		</media:content>

		<media:content url="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" medium="image" />

		<media:content url="http://profile.ak.fbcdn.net/v225/1331/68/q1070122674_3122.jpg" medium="image">
			<media:title type="html">Piu Chatterjee</media:title>
		</media:content>

		<media:content url="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" medium="image" />

		<media:content url="http://profile.ak.fbcdn.net/v229/114/123/q571725198_2405.jpg" medium="image">
			<media:title type="html">Alok Sharma</media:title>
		</media:content>

		<media:content url="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" medium="image" />

		<media:content url="http://profile.ak.fbcdn.net/v228/1886/87/q708791097_9452.jpg" medium="image">
			<media:title type="html">Govind Daga</media:title>
		</media:content>

		<media:content url="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" medium="image" />

		<media:content url="http://profile.ak.fbcdn.net/v229/114/123/q571725198_2405.jpg" medium="image">
			<media:title type="html">Alok Sharma</media:title>
		</media:content>

		<media:content url="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" medium="image" />

		<media:content url="http://profile.ak.fbcdn.net/v228/1886/87/q708791097_9452.jpg" medium="image">
			<media:title type="html">Govind Daga</media:title>
		</media:content>

		<media:content url="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" medium="image" />

		<media:content url="http://profile.ak.fbcdn.net/v229/114/123/q571725198_2405.jpg" medium="image">
			<media:title type="html">Alok Sharma</media:title>
		</media:content>

		<media:content url="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" medium="image" />

		<media:content url="http://profile.ak.fbcdn.net/v229/114/123/q571725198_2405.jpg" medium="image">
			<media:title type="html">Alok Sharma</media:title>
		</media:content>

		<media:content url="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" medium="image" />

		<media:content url="http://profile.ak.fbcdn.net/v224/959/36/q611394693_4732.jpg" medium="image">
			<media:title type="html">Abhishek Gupta</media:title>
		</media:content>

		<media:content url="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" medium="image" />

		<media:content url="http://profile.ak.fbcdn.net/v228/1886/87/q708791097_9452.jpg" medium="image">
			<media:title type="html">Govind Daga</media:title>
		</media:content>

		<media:content url="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" medium="image" />

		<media:content url="http://profile.ak.fbcdn.net/v229/114/123/q571725198_2405.jpg" medium="image">
			<media:title type="html">Alok Sharma</media:title>
		</media:content>

		<media:content url="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" medium="image" />

		<media:content url="http://profile.ak.fbcdn.net/v224/959/36/q611394693_4732.jpg" medium="image">
			<media:title type="html">Abhishek Gupta</media:title>
		</media:content>

		<media:content url="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" medium="image" />

		<media:content url="http://profile.ak.fbcdn.net/v229/114/123/q571725198_2405.jpg" medium="image">
			<media:title type="html">Alok Sharma</media:title>
		</media:content>

		<media:content url="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" medium="image" />

		<media:content url="http://profile.ak.fbcdn.net/v228/1886/87/q708791097_9452.jpg" medium="image">
			<media:title type="html">Govind Daga</media:title>
		</media:content>

		<media:content url="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" medium="image" />

		<media:content url="http://profile.ak.fbcdn.net/v228/1886/87/q708791097_9452.jpg" medium="image">
			<media:title type="html">Govind Daga</media:title>
		</media:content>

		<media:content url="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" medium="image" />

		<media:content url="http://profile.ak.fbcdn.net/v229/114/123/q571725198_2405.jpg" medium="image">
			<media:title type="html">Alok Sharma</media:title>
		</media:content>

		<media:content url="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" medium="image" />

		<media:content url="http://profile.ak.fbcdn.net/v228/1886/87/q708791097_9452.jpg" medium="image">
			<media:title type="html">Govind Daga</media:title>
		</media:content>

		<media:content url="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" medium="image" />

		<media:content url="http://profile.ak.fbcdn.net/v229/114/123/q571725198_2405.jpg" medium="image">
			<media:title type="html">Alok Sharma</media:title>
		</media:content>

		<media:content url="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" medium="image" />

		<media:content url="http://profile.ak.fbcdn.net/v228/1886/87/q708791097_9452.jpg" medium="image">
			<media:title type="html">Govind Daga</media:title>
		</media:content>

		<media:content url="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" medium="image" />

		<media:content url="http://profile.ak.fbcdn.net/v229/114/123/q571725198_2405.jpg" medium="image">
			<media:title type="html">Alok Sharma</media:title>
		</media:content>

		<media:content url="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" medium="image" />

		<media:content url="http://profile.ak.fbcdn.net/v228/1886/87/q708791097_9452.jpg" medium="image">
			<media:title type="html">Govind Daga</media:title>
		</media:content>

		<media:content url="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" medium="image" />

		<media:content url="http://profile.ak.fbcdn.net/v229/114/123/q571725198_2405.jpg" medium="image">
			<media:title type="html">Alok Sharma</media:title>
		</media:content>

		<media:content url="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" medium="image" />

		<media:content url="http://profile.ak.fbcdn.net/v228/1886/87/q708791097_9452.jpg" medium="image">
			<media:title type="html">Govind Daga</media:title>
		</media:content>

		<media:content url="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" medium="image" />

		<media:content url="http://profile.ak.fbcdn.net/v229/114/123/q571725198_2405.jpg" medium="image">
			<media:title type="html">Alok Sharma</media:title>
		</media:content>

		<media:content url="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" medium="image" />

		<media:content url="http://profile.ak.fbcdn.net/v224/959/36/q611394693_4732.jpg" medium="image">
			<media:title type="html">Abhishek Gupta</media:title>
		</media:content>

		<media:content url="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" medium="image" />

		<media:content url="http://profile.ak.fbcdn.net/v228/1886/87/q708791097_9452.jpg" medium="image">
			<media:title type="html">Govind Daga</media:title>
		</media:content>

		<media:content url="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" medium="image" />

		<media:content url="http://profile.ak.fbcdn.net/v229/114/123/q571725198_2405.jpg" medium="image">
			<media:title type="html">Alok Sharma</media:title>
		</media:content>

		<media:content url="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" medium="image" />

		<media:content url="http://profile.ak.fbcdn.net/v224/959/36/q611394693_4732.jpg" medium="image">
			<media:title type="html">Abhishek Gupta</media:title>
		</media:content>

		<media:content url="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" medium="image" />

		<media:content url="http://profile.ak.fbcdn.net/v229/114/123/q571725198_2405.jpg" medium="image">
			<media:title type="html">Alok Sharma</media:title>
		</media:content>

		<media:content url="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" medium="image" />

		<media:content url="http://profile.ak.fbcdn.net/v229/114/123/q571725198_2405.jpg" medium="image">
			<media:title type="html">Alok Sharma</media:title>
		</media:content>

		<media:content url="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" medium="image" />

		<media:content url="http://profile.ak.fbcdn.net/v229/114/123/q571725198_2405.jpg" medium="image">
			<media:title type="html">Alok Sharma</media:title>
		</media:content>

		<media:content url="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" medium="image" />

		<media:content url="http://profile.ak.fbcdn.net/v228/1886/87/q708791097_9452.jpg" medium="image">
			<media:title type="html">Govind Daga</media:title>
		</media:content>

		<media:content url="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" medium="image" />

		<media:content url="http://profile.ak.fbcdn.net/v229/114/123/q571725198_2405.jpg" medium="image">
			<media:title type="html">Alok Sharma</media:title>
		</media:content>

		<media:content url="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" medium="image" />

		<media:content url="http://profile.ak.fbcdn.net/v228/1886/87/q708791097_9452.jpg" medium="image">
			<media:title type="html">Govind Daga</media:title>
		</media:content>

		<media:content url="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" medium="image" />

		<media:content url="http://profile.ak.fbcdn.net/v228/1886/87/q708791097_9452.jpg" medium="image">
			<media:title type="html">Govind Daga</media:title>
		</media:content>

		<media:content url="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" medium="image" />

		<media:content url="http://profile.ak.fbcdn.net/v224/959/36/q611394693_4732.jpg" medium="image">
			<media:title type="html">Abhishek Gupta</media:title>
		</media:content>

		<media:content url="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" medium="image" />

		<media:content url="http://profile.ak.fbcdn.net/v228/1886/87/q708791097_9452.jpg" medium="image">
			<media:title type="html">Govind Daga</media:title>
		</media:content>

		<media:content url="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" medium="image" />

		<media:content url="http://profile.ak.fbcdn.net/v224/959/36/q611394693_4732.jpg" medium="image">
			<media:title type="html">Abhishek Gupta</media:title>
		</media:content>

		<media:content url="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" medium="image" />

		<media:content url="http://profile.ak.fbcdn.net/v228/1886/87/q708791097_9452.jpg" medium="image">
			<media:title type="html">Govind Daga</media:title>
		</media:content>

		<media:content url="http://static.ak.fbcdn.net/rsrc.php/z821J/hash/jchlj5zu.png" medium="image" />
	</item>
		<item>
		<title>At Sun IEC , Bangalore</title>
		<link>http://abhishekin.wordpress.com/2009/05/20/at-sun-iec-bangalore/</link>
		<comments>http://abhishekin.wordpress.com/2009/05/20/at-sun-iec-bangalore/#comments</comments>
		<pubDate>Wed, 20 May 2009 17:31:10 +0000</pubDate>
		<dc:creator>abhiitechie</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[sun]]></category>
		<category><![CDATA[ambassador]]></category>
		<category><![CDATA[bangalore]]></category>
		<category><![CDATA[cafeteria]]></category>
		<category><![CDATA[canteen]]></category>
		<category><![CDATA[chambers]]></category>
		<category><![CDATA[divyashree]]></category>
		<category><![CDATA[experiences]]></category>
		<category><![CDATA[IEC]]></category>
		<category><![CDATA[internship]]></category>
		<category><![CDATA[langford]]></category>
		<category><![CDATA[microsystems]]></category>
		<category><![CDATA[ray]]></category>
		<category><![CDATA[road]]></category>
		<category><![CDATA[sparc]]></category>

		<guid isPermaLink="false">http://abhishekin.wordpress.com/?p=103</guid>
		<description><![CDATA[Sun&#8217;s India Engineering Center (IEC) occupies most of the Divya Shree Chambers building off Langford Road in Bangalore. I kept on telling everybody that is near M.G Road but in reality it is nothing like that Lunch (always a major preoccupation with me) is provided at the 5th-floor canteen, which gets very crowded around 12:45,hence [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=abhishekin.wordpress.com&amp;blog=7498267&amp;post=103&amp;subd=abhishekin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Sun&#8217;s India Engineering Center (IEC) occupies most of the Divya Shree Chambers building off Langford Road in Bangalore. I kept on telling everybody that is near M.G Road but in reality it is nothing like that</p>
<p><img class="aligncenter size-full wp-image-110" title="3316002336_d2c5157ec5_o" src="http://abhishekin.files.wordpress.com/2009/05/3316002336_d2c5157ec5_o.jpg?w=500&#038;h=375" alt="3316002336_d2c5157ec5_o" width="500" height="375" /></p>
<p><img class="aligncenter size-full wp-image-114" title="3316002746_94295b70e0_o" src="http://abhishekin.files.wordpress.com/2009/05/3316002746_94295b70e0_o.jpg?w=604&#038;h=453" alt="3316002746_94295b70e0_o" width="604" height="453" /></p>
<p><img class="aligncenter size-full wp-image-115" title="3316001660_e79dc6a0e8_o" src="http://abhishekin.files.wordpress.com/2009/05/3316001660_e79dc6a0e8_o.jpg?w=604&#038;h=453" alt="3316001660_e79dc6a0e8_o" width="604" height="453" /></p>
<p>Lunch (always a major preoccupation with me) is provided at the 5th-floor canteen, which gets very crowded around 12:45,hence sometimes we need to book the conference room to have our lunch . There&#8217;s a buffet of both Vegetarian and its non counterpart for a reasonable sum of Rs 35 /- (Very very cheap as per Bangalore standards but just a bit expensive as per Kolkata standards.)</p>
<p><img class="aligncenter size-full wp-image-104" title="3315174305_65773309d6_o" src="http://abhishekin.files.wordpress.com/2009/05/3315174305_65773309d6_o.jpg?w=500&#038;h=375" alt="3315174305_65773309d6_o" width="500" height="375" /></p>
<p> </p>
<p><img class="aligncenter size-full wp-image-117" title="3315174149_f8813881a2_o" src="http://abhishekin.files.wordpress.com/2009/05/3315174149_f8813881a2_o.jpg?w=500&#038;h=375" alt="3315174149_f8813881a2_o" width="500" height="375" /></p>
<p>For a change we can order fresh fruits , as I saw for some ladies who prefered them for the dieting routine.</p>
<p><img class="aligncenter size-full wp-image-106" title="IMG_3622" src="http://abhishekin.files.wordpress.com/2009/05/img_3622.jpg?w=400&#038;h=533" alt="IMG_3622" width="400" height="533" /></p>
<p>The Sun break rooms have a great selection of teas, including <em>elaichi </em>(cardamom), <em>masala </em>(what Americans call chai spice), and ginger. Plus a selection of other hot drinks &#8211; cocoa, instant coffee, and flavored mixes that I haven&#8217;t quite understood yet.</p>
<p><img class="aligncenter size-full wp-image-107" title="tea" src="http://abhishekin.files.wordpress.com/2009/05/tea.jpg?w=400&#038;h=567" alt="tea" width="400" height="567" /></p>
<p>There&#8217;s a machine dispensing hot water and hot milk to mix these with. There is also brewed coffee, chocolate powder,tomato soup mix and powdered,badam milk and many more .</p>
<p><img class="aligncenter size-medium wp-image-109" style="display:block;margin-left:auto;margin-right:auto;border:0 initial initial;" title="12-05-09_0900" src="http://abhishekin.files.wordpress.com/2009/05/12-05-09_09001.jpg?w=300&#038;h=225" alt="12-05-09_0900" width="300" height="225" /></p>
<p>Now coming to the important part that is WORK . The very first day I got my Badge ready for which there was a photo session sort of arrangement at the ground floor near the data-center . For the first time in my life I felt very important .</p>
<p>For those of  you  who  don&#8217;t know what a Badge is , I will like to tell that it is card like thing with my photo and other details and chip and a magnetic strip .It comes to use at the security gates where we  need to show it a sensor and only then the door opens .Besides this is used when we need to use a Sun Ray machine ( Runs on Solaris 10 and has a SPARC architecture) , it is inserted into a slot inside the machine.</p>
<p style="text-align:center;"><img class="aligncenter size-full wp-image-113" title="11-05-09_1802" src="http://abhishekin.files.wordpress.com/2009/05/11-05-09_1802.jpg?w=300&#038;h=400" alt="11-05-09_1802" width="300" height="400" /></p>
<p style="text-align:left;">Its is a really nice environment around to work with caring and loving seniours and and lots of respect for every employee . The working time is flexible ,by flexible I mean there is no fixed working schedule and timing or anything like that . When you are done with your work you can can go home and sleep and if its like you prefer to work nights then you can work in the office during the nights. </p>
<p style="text-align:left;">So I am kind of enjoying the experience as a Sun Intern and another news I have just heard that Sun IEC Bangalore will be celebrating its 10th birthday by throwing a huge party at a hotel called OTERRA at Electronic city and we are invited . So my next post will be on IEC 10 years of Engineering Excellence.</p>
<p style="text-align:center;"><img class="aligncenter size-full wp-image-116" title="11-05-09_1820" src="http://abhishekin.files.wordpress.com/2009/05/11-05-09_1820.jpg?w=600&#038;h=450" alt="11-05-09_1820" width="600" height="450" /></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/abhishekin.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/abhishekin.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/abhishekin.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/abhishekin.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/abhishekin.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/abhishekin.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/abhishekin.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/abhishekin.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/abhishekin.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/abhishekin.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/abhishekin.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/abhishekin.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/abhishekin.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/abhishekin.wordpress.com/103/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=abhishekin.wordpress.com&amp;blog=7498267&amp;post=103&amp;subd=abhishekin&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://abhishekin.wordpress.com/2009/05/20/at-sun-iec-bangalore/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/87b42155de45c3b019a8196b3669bb50?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Nishu</media:title>
		</media:content>

		<media:content url="http://abhishekin.files.wordpress.com/2009/05/3316002336_d2c5157ec5_o.jpg" medium="image">
			<media:title type="html">3316002336_d2c5157ec5_o</media:title>
		</media:content>

		<media:content url="http://abhishekin.files.wordpress.com/2009/05/3316002746_94295b70e0_o.jpg" medium="image">
			<media:title type="html">3316002746_94295b70e0_o</media:title>
		</media:content>

		<media:content url="http://abhishekin.files.wordpress.com/2009/05/3316001660_e79dc6a0e8_o.jpg" medium="image">
			<media:title type="html">3316001660_e79dc6a0e8_o</media:title>
		</media:content>

		<media:content url="http://abhishekin.files.wordpress.com/2009/05/3315174305_65773309d6_o.jpg" medium="image">
			<media:title type="html">3315174305_65773309d6_o</media:title>
		</media:content>

		<media:content url="http://abhishekin.files.wordpress.com/2009/05/3315174149_f8813881a2_o.jpg" medium="image">
			<media:title type="html">3315174149_f8813881a2_o</media:title>
		</media:content>

		<media:content url="http://abhishekin.files.wordpress.com/2009/05/img_3622.jpg" medium="image">
			<media:title type="html">IMG_3622</media:title>
		</media:content>

		<media:content url="http://abhishekin.files.wordpress.com/2009/05/tea.jpg" medium="image">
			<media:title type="html">tea</media:title>
		</media:content>

		<media:content url="http://abhishekin.files.wordpress.com/2009/05/12-05-09_09001.jpg?w=300" medium="image">
			<media:title type="html">12-05-09_0900</media:title>
		</media:content>

		<media:content url="http://abhishekin.files.wordpress.com/2009/05/11-05-09_1802.jpg" medium="image">
			<media:title type="html">11-05-09_1802</media:title>
		</media:content>

		<media:content url="http://abhishekin.files.wordpress.com/2009/05/11-05-09_1820.jpg" medium="image">
			<media:title type="html">11-05-09_1820</media:title>
		</media:content>
	</item>
		<item>
		<title>Three submissions today at Juicer</title>
		<link>http://abhishekin.wordpress.com/2009/05/19/three-submissions-today-at-juicer/</link>
		<comments>http://abhishekin.wordpress.com/2009/05/19/three-submissions-today-at-juicer/#comments</comments>
		<pubDate>Tue, 19 May 2009 11:39:56 +0000</pubDate>
		<dc:creator>abhiitechie</dc:creator>
				<category><![CDATA[sun]]></category>
		<category><![CDATA[Opensolaris]]></category>
		<category><![CDATA[abhishek]]></category>
		<category><![CDATA[gupta]]></category>
		<category><![CDATA[open]]></category>
		<category><![CDATA[source]]></category>
		<category><![CDATA[port]]></category>
		<category><![CDATA[solaris]]></category>
		<category><![CDATA[package]]></category>
		<category><![CDATA[juicer]]></category>
		<category><![CDATA[openvpn]]></category>
		<category><![CDATA[three]]></category>
		<category><![CDATA[specs]]></category>
		<category><![CDATA[submitted]]></category>
		<category><![CDATA[one]]></category>
		<category><![CDATA[day]]></category>
		<category><![CDATA[gtk2edit]]></category>
		<category><![CDATA[gnome-schedule]]></category>
		<category><![CDATA[scribes]]></category>

		<guid isPermaLink="false">http://abhishekin.wordpress.com/?p=101</guid>
		<description><![CDATA[Three days of work all gone I wont say waste when I found openVPN already in the /pending directory by someone named Martin but still I learned from my mistakes and gained some experience  with this thing and so I have been able to make three submissions in one day to the Source juicer hoping [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=abhishekin.wordpress.com&amp;blog=7498267&amp;post=101&amp;subd=abhishekin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Three days of work all gone I wont say waste when I found openVPN already in the /pending directory by someone named Martin but still I learned from my mistakes and gained some experience  with this thing and so I have been able to make three submissions in one day to the Source juicer hoping for some success. Still I am in my early days as a software porter for opensolaris and has lot to learn . Keeping my fingers crossed for the submissions to get accepted .</p>
<p>The specs submitted by me are for:</p>
<p><strong>Sribes </strong>( <a href="http://scribes.sourceforge.net/">http://scribes.sourceforge.net</a>): Very sleek looking graphical editor for the Gnome desktop of Opensolaris.</p>
<p><strong>Gnome-schedule</strong> ( <a href="http://gnome-schedule.sourceforge.ne">http://gnome-schedule.sourceforge.ne</a>t ) : Graphical sytem administration tool.</p>
<p><strong>GTK2Edit</strong> ( <a href="http://sourceforge.net/projects/gtk2edit">http://sourceforge.net/projects/gtk2edit</a> ): Simple Gnome text editor.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/abhishekin.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/abhishekin.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/abhishekin.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/abhishekin.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/abhishekin.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/abhishekin.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/abhishekin.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/abhishekin.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/abhishekin.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/abhishekin.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/abhishekin.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/abhishekin.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/abhishekin.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/abhishekin.wordpress.com/101/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=abhishekin.wordpress.com&amp;blog=7498267&amp;post=101&amp;subd=abhishekin&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://abhishekin.wordpress.com/2009/05/19/three-submissions-today-at-juicer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/87b42155de45c3b019a8196b3669bb50?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Nishu</media:title>
		</media:content>
	</item>
		<item>
		<title>JavaOne Coming to the OSUM Community</title>
		<link>http://abhishekin.wordpress.com/2009/05/18/javaone-coming-to-the-osum-community/</link>
		<comments>http://abhishekin.wordpress.com/2009/05/18/javaone-coming-to-the-osum-community/#comments</comments>
		<pubDate>Mon, 18 May 2009 17:18:28 +0000</pubDate>
		<dc:creator>abhiitechie</dc:creator>
				<category><![CDATA[sun]]></category>
		<category><![CDATA[calender]]></category>
		<category><![CDATA[event]]></category>
		<category><![CDATA[javaone]]></category>
		<category><![CDATA[meetup]]></category>
		<category><![CDATA[open]]></category>
		<category><![CDATA[osum]]></category>
		<category><![CDATA[source]]></category>
		<category><![CDATA[university]]></category>
		<category><![CDATA[webinar]]></category>

		<guid isPermaLink="false">http://abhishekin.wordpress.com/?p=99</guid>
		<description><![CDATA[As it is very difficult for everyone  to make the trip to San Francisco to attend JavaOne. That&#8217;s why special arrangements has been made to bring JavaOne to the Open Source University Meetup (OSUM) Community.  OSUM has scheduled a series of webinars which are previews of hands-on labs that will be conducted at JavaOne. Check [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=abhishekin.wordpress.com&amp;blog=7498267&amp;post=99&amp;subd=abhishekin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>As it is very difficult for everyone  to make the trip to San Francisco to attend JavaOne. That&#8217;s why special arrangements has been made to bring JavaOne to the Open Source University Meetup (<strong><a href="http://osum.sun.com">OSUM</a></strong>) Community.  OSUM has scheduled a series of webinars which are previews of hands-on labs that will be conducted at JavaOne.</p>
<p>Check the <a href="http://osum.sun.com/events"><strong>OSUM events calendar</strong></a> for the complete schedule and RSVP today.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/abhishekin.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/abhishekin.wordpress.com/99/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/abhishekin.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/abhishekin.wordpress.com/99/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/abhishekin.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/abhishekin.wordpress.com/99/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/abhishekin.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/abhishekin.wordpress.com/99/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/abhishekin.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/abhishekin.wordpress.com/99/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/abhishekin.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/abhishekin.wordpress.com/99/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/abhishekin.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/abhishekin.wordpress.com/99/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=abhishekin.wordpress.com&amp;blog=7498267&amp;post=99&amp;subd=abhishekin&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://abhishekin.wordpress.com/2009/05/18/javaone-coming-to-the-osum-community/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/87b42155de45c3b019a8196b3669bb50?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Nishu</media:title>
		</media:content>
	</item>
		<item>
		<title>Viewing your server(Remote Desktop) with browser using VNC Java Applet</title>
		<link>http://abhishekin.wordpress.com/2009/05/18/viewing-your-serverremote-desktop-with-browser-using-vnc-java-applet/</link>
		<comments>http://abhishekin.wordpress.com/2009/05/18/viewing-your-serverremote-desktop-with-browser-using-vnc-java-applet/#comments</comments>
		<pubDate>Mon, 18 May 2009 16:49:30 +0000</pubDate>
		<dc:creator>abhiitechie</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[applet]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[desktop]]></category>
		<category><![CDATA[http]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[remote]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[tcp]]></category>
		<category><![CDATA[vnc]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://abhishekin.wordpress.com/?p=97</guid>
		<description><![CDATA[VNC consists of two components. A server, which runs on the computer you want to remotely access, and a viewer, which runs on the computer you are sitting in front of. There are two important features of VNC: The server and the viewer may be on different machines and on types of computer. The protocol which connects [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=abhishekin.wordpress.com&amp;blog=7498267&amp;post=97&amp;subd=abhishekin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>VNC consists of two components. A <em>server</em>, which runs on the computer you want to remotely access, and a <em>viewer</em>, which runs on the computer you are sitting in front of. There are two important features of VNC:</p>
<ul>
<li>The server and the viewer may be on different machines and on types of computer. The protocol which connects the server and viewer is simple, open, and platform independent.</li>
<li>No state is stored at the viewer. Breaking the viewer&#8217;s connection to the server and then reconnecting will not result in any loss of data. Because the connection can be remade from somewhere else, you have easy mobility.</li>
</ul>
<p>So to get started with VNC you need to run a server, and then connect to it with a viewer. First of all, you have to <a href="http://www.realvnc.com/products/download.html">download and install</a> the software on the platforms you want to use.</p>
<p>VNC software requires a TCP/IP connection between the server and the viewer. This is the standard networking protocol on LANs, WANs, broadband and dialup ISP. Each computer has a unique IP address and may also have a name in the DNS. You will need to know the IP address or name of the server when you connect a viewer to it.</p>
<p>The VNC servers also contain a small web server. If you connect to this with a web browser, you can download the Java version of the viewer, and use this to view the server. You can then see your desktop from any Java-capable browser, unless you are using a proxy to connect to the web. The server listens for HTTP connections on port 5800+display number. So to view display 2 on machine &#8216;snoopy&#8217;, you would point your web browser at:</p>
<p>http://snoopy:5802/</p>
<p>The applet will prompt you for your password, and should then display the desktop.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/abhishekin.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/abhishekin.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/abhishekin.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/abhishekin.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/abhishekin.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/abhishekin.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/abhishekin.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/abhishekin.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/abhishekin.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/abhishekin.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/abhishekin.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/abhishekin.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/abhishekin.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/abhishekin.wordpress.com/97/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=abhishekin.wordpress.com&amp;blog=7498267&amp;post=97&amp;subd=abhishekin&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://abhishekin.wordpress.com/2009/05/18/viewing-your-serverremote-desktop-with-browser-using-vnc-java-applet/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/87b42155de45c3b019a8196b3669bb50?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Nishu</media:title>
		</media:content>
	</item>
		<item>
		<title>Roumen Strobls Leaving Sun Microsystems Inc.</title>
		<link>http://abhishekin.wordpress.com/2009/05/18/roumen-strobls-leaving-sun-microsystems-inc/</link>
		<comments>http://abhishekin.wordpress.com/2009/05/18/roumen-strobls-leaving-sun-microsystems-inc/#comments</comments>
		<pubDate>Mon, 18 May 2009 15:06:17 +0000</pubDate>
		<dc:creator>abhiitechie</dc:creator>
				<category><![CDATA[sun]]></category>
		<category><![CDATA[javaone]]></category>
		<category><![CDATA[leaving]]></category>
		<category><![CDATA[microsystems]]></category>
		<category><![CDATA[roumen]]></category>
		<category><![CDATA[screencasts]]></category>
		<category><![CDATA[strobl]]></category>
		<category><![CDATA[tutorials]]></category>

		<guid isPermaLink="false">http://abhishekin.wordpress.com/?p=95</guid>
		<description><![CDATA[He is the man behind all those brilliant screen casts and blog posts and loads of tutorials for both Netbeans and OpenSolaris. Finally he has decided to leave Sun but he will still stick on to Java and work for JavaOne Here is what he writes in his blog http://blogs.sun.com/roumen/entry/leaving_sun) &#8220;I have decided to quit [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=abhishekin.wordpress.com&amp;blog=7498267&amp;post=95&amp;subd=abhishekin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>He is the man behind all those brilliant screen casts and blog posts and loads of tutorials for both Netbeans and OpenSolaris. Finally he has decided to leave Sun but he will still stick on to Java and work for JavaOne</p>
<p>Here is what he writes in his blog <a href="http://blogs.sun.com/roumen/entry/leaving_sun">http://blogs.sun.com/roumen/entry/leaving_sun</a>)</p>
<p style="text-align:left;margin:10px 0 0;"><em>&#8220;I have decided to quit Sun Microsystems. I spent amazing 5 years at Sun and I am very grateful for all I&#8217;ve learned with the company. Working on both NetBeans and OpenSolaris adoption was real fun so I leave with very mixed feelings.</em></p>
<p style="text-align:left;margin:10px 0 0;"><em>I am going back to Java developer business and will be going to Java One with my new employer, so you will find me in the Java One pavilion area if you want to say hi. I wish my Sun colleagues good luck with their new adventures!</em></p>
<p style="text-align:left;margin:10px 0 0;"><em>P.S. Thanks for all the beans.<span style="font-style:normal;">&#8220;</span></em></p>
<p style="text-align:left;margin:10px 0 0;"><em></em></p>
<p>Wish you all the best Sir . Keep enlightening us with your screencasts.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/abhishekin.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/abhishekin.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/abhishekin.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/abhishekin.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/abhishekin.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/abhishekin.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/abhishekin.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/abhishekin.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/abhishekin.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/abhishekin.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/abhishekin.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/abhishekin.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/abhishekin.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/abhishekin.wordpress.com/95/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=abhishekin.wordpress.com&amp;blog=7498267&amp;post=95&amp;subd=abhishekin&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://abhishekin.wordpress.com/2009/05/18/roumen-strobls-leaving-sun-microsystems-inc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/87b42155de45c3b019a8196b3669bb50?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Nishu</media:title>
		</media:content>
	</item>
		<item>
		<title>OpenSolaris 2008.11 Mini-Book</title>
		<link>http://abhishekin.wordpress.com/2009/05/17/opensolaris-2008-11-mini-book/</link>
		<comments>http://abhishekin.wordpress.com/2009/05/17/opensolaris-2008-11-mini-book/#comments</comments>
		<pubDate>Sun, 17 May 2009 14:54:46 +0000</pubDate>
		<dc:creator>abhiitechie</dc:creator>
				<category><![CDATA[sun]]></category>
		<category><![CDATA[abhishek]]></category>
		<category><![CDATA[book]]></category>
		<category><![CDATA[Club]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[durgapur]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[gupta]]></category>
		<category><![CDATA[mini]]></category>
		<category><![CDATA[nit]]></category>
		<category><![CDATA[open]]></category>
		<category><![CDATA[open solaris]]></category>
		<category><![CDATA[Opensolaris]]></category>
		<category><![CDATA[solaris]]></category>

		<guid isPermaLink="false">http://abhishekin.wordpress.com/?p=93</guid>
		<description><![CDATA[The Getting Started with OpenSOlaris 2008.11 mini-books were recently released. They are available in English, Brazilian Portuguese, Spanish, Italian, German, Traditional Chinese, Simplified Chinese, Korean and Japanese. You might notice that there is a difference between the content of these books. They are composed by three different documents, and only the ones in English, Simplified Chinese [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=abhishekin.wordpress.com&amp;blog=7498267&amp;post=93&amp;subd=abhishekin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;">The Getting Started with OpenSOlaris 2008.11 mini-books were recently<a href="http://sunkth.files.wordpress.com/2009/04/iphon_wallpaper_5.jpg"><img class="alignright size-medium wp-image-436" style="float:right;display:inline;border:initial none initial;margin:0 0 2px 7px;padding:4px;" title="OpenSolaris" src="http://sunkth.files.wordpress.com/2009/04/iphon_wallpaper_5.jpg?w=200&#038;h=300&#038;h=300" alt="OpenSolaris" width="200" height="300" /></a> released. They are available in English, Brazilian Portuguese, Spanish, Italian, German, Traditional Chinese, Simplified Chinese, Korean and Japanese.</p>
<p style="text-align:justify;">You might notice that there is a difference between the content of these books. They are composed by three different documents, and only the ones in English, Simplified Chinese and Japanese have them all. All other languages have only one document.</p>
<p style="text-align:justify;">The books have a pretty basic approach, so they are aimed at people who doesn’t have much experience with the OS. This makes them perfect to be indicated during basic courses and presentations.</p>
<p style="text-align:justify;">It seems that the 2008.11 version of these mini-books will be available only in the digital format.</p>
<p style="text-align:justify;"><strong>Download:</strong></p>
<p style="text-align:justify;"><a rel="#someid4" href="http://dlc.sun.com/osol/docs/downloads/minibook/en/820-7102-10-Eng-doc.pdf">OpenSOlaris 2008.11 mini-book (English)</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/abhishekin.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/abhishekin.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/abhishekin.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/abhishekin.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/abhishekin.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/abhishekin.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/abhishekin.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/abhishekin.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/abhishekin.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/abhishekin.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/abhishekin.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/abhishekin.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/abhishekin.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/abhishekin.wordpress.com/93/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=abhishekin.wordpress.com&amp;blog=7498267&amp;post=93&amp;subd=abhishekin&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://abhishekin.wordpress.com/2009/05/17/opensolaris-2008-11-mini-book/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/87b42155de45c3b019a8196b3669bb50?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Nishu</media:title>
		</media:content>

		<media:content url="http://sunkth.files.wordpress.com/2009/04/iphon_wallpaper_5.jpg?w=200&#38;h=300" medium="image">
			<media:title type="html">OpenSolaris</media:title>
		</media:content>
	</item>
		<item>
		<title>Regular Expressions in Javascript</title>
		<link>http://abhishekin.wordpress.com/2009/05/17/regular-expressions-in-javascript/</link>
		<comments>http://abhishekin.wordpress.com/2009/05/17/regular-expressions-in-javascript/#comments</comments>
		<pubDate>Sun, 17 May 2009 14:23:34 +0000</pubDate>
		<dc:creator>abhiitechie</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[examples]]></category>
		<category><![CDATA[expression]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[regular]]></category>

		<guid isPermaLink="false">http://abhishekin.wordpress.com/?p=91</guid>
		<description><![CDATA[Here are some examples of using regular expressions for input validations in javascript. var input = &#8220;hello222&#8243;; var ok = false; var dob_regex = /^([0-9]){2}(\/){1}([0-9]){2}(\/)([0-9]){4}$/;   // DD/MM/YYYY var email_regex = /^[a-zA-Z0-9._-]+@([a-zA-Z0-9.-]+\.)+[a-zA-Z0-9.-]{2,4}$/;  // email address var username_regex = /^[\w.-]+$/;  // allowed characters: any word . -, ( \w ) represents any word character (letters, digits, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=abhishekin.wordpress.com&amp;blog=7498267&amp;post=91&amp;subd=abhishekin&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Here are some examples of using regular expressions for input validations in javascript.</p>
<p>var input = &#8220;hello222&#8243;;<br />
var ok = false;</p>
<p>var dob_regex = /^([0-9]){2}(\/){1}([0-9]){2}(\/)([0-9]){4}$/;   // DD/MM/YYYY<br />
var email_regex = /^[a-zA-Z0-9._-]+@([a-zA-Z0-9.-]+\.)+[a-zA-Z0-9.-]{2,4}$/;  // email address<br />
var username_regex = /^[\w.-]+$/;  // allowed characters: any word . -, ( \w ) represents any word character (letters, digits, and the underscore _ ), equivalent to [a-zA-Z0-9_]<br />
var num_regex = /^\d+$/; // numeric digits only<br />
var search_regex = &#8220;/hello/&#8221;;<br />
var password_regex = /^[A-Za-z\d]{6,8}$/;  // any upper/lowercase characters and digits, between 6 to 8 characters in total<br />
var phone_regex = /^\(\d{3]\) \d{3}-\d{4}$/;  // (xxx) xxx-xxxx<br />
var question_regex = /\?$/; // ends with a question mark</p>
<p><strong>1. Check that there are at least 3 numeric characters in input</strong><br />
if ( input.match(/d/g) == null ) {<br />
ok = false;<br />
} else if ( input.match(/d/g).length &lt; 3 )  {<br />
ok = false;<br />
} else {<br />
ok = true;<br />
}<br />
<strong>2. Check that the input has a minimum of 8 characters</strong><br />
if ( input.length &gt;= 8 ) {<br />
ok = true;<br />
}<br />
<strong>3. Check that the input is in a correct date format (DD/MM/YYYY)</strong><br />
if ( dob_regex.test(input) ) {<br />
ok = true;<br />
}<br />
<strong>4. Check that the input is in a correct email format (username@example.com)<br />
</strong>if ( email_regex.test(input) ) {<br />
ok = true;<br />
}<br />
<strong>5. Check that the input matches the specified username format</strong><br />
if ( username_regex.test(input) ) {<br />
ok = true;<br />
}<br />
<strong>6. Check that the input contains only numeric characters</strong><br />
if ( input.match(num_regex) ) {<br />
ok = true;<br />
}<br />
<strong>7. Search for a specific word in the input</strong><br />
if ( input.search(search_regex) != -1 ) {<br />
ok = true;<br />
}<br />
<strong>8. Check that the input matches the specified password format</strong><br />
if ( input.match(password_regex) ) {<br />
ok = true;<br />
}<br />
<strong>9. Check that the input matches the specified phone number format</strong><br />
if ( input.match(phone_regex) ) {<br />
ok = true;<br />
}<br />
<strong>10. Check that the input is a question (ends with a question mark)<br />
</strong>if ( question_regex.test(input) ) {<br />
ok = true;<br />
}</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/abhishekin.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/abhishekin.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/abhishekin.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/abhishekin.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/abhishekin.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/abhishekin.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/abhishekin.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/abhishekin.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/abhishekin.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/abhishekin.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/abhishekin.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/abhishekin.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/abhishekin.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/abhishekin.wordpress.com/91/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=abhishekin.wordpress.com&amp;blog=7498267&amp;post=91&amp;subd=abhishekin&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://abhishekin.wordpress.com/2009/05/17/regular-expressions-in-javascript/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/87b42155de45c3b019a8196b3669bb50?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Nishu</media:title>
		</media:content>
	</item>
	</channel>
</rss>
