<?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:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Worldtechies</title>
	<atom:link href="http://sureshjain.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://sureshjain.wordpress.com</link>
	<description>World of technicians.....................</description>
	<pubDate>Tue, 05 Aug 2008 09:21:03 +0000</pubDate>
	<generator>http://wordpress.org/?v=MU</generator>
	<language>en</language>
			<item>
		<title>Solution for PNG images in css</title>
		<link>http://sureshjain.wordpress.com/2008/08/05/solution-for-png-images-in-css/</link>
		<comments>http://sureshjain.wordpress.com/2008/08/05/solution-for-png-images-in-css/#comments</comments>
		<pubDate>Tue, 05 Aug 2008 09:21:03 +0000</pubDate>
		<dc:creator>sureshjain</dc:creator>
		
		<category><![CDATA[css]]></category>

		<category><![CDATA[IE6]]></category>

		<category><![CDATA[png image]]></category>

		<guid isPermaLink="false">http://sureshjain.wordpress.com/?p=109</guid>
		<description><![CDATA[Many of us might have nightmare&#8217;s using png images as they are not supported in IE. Here is the solution we can use to overcome that nightmare
 
Method 1:
html&#62;body .className{
 background: url(&#8221;../images/suresh kumar.png&#8221;) no-repeat;
}
Method 2:
* html #id{
    background:url(&#8221;../images/none.gif&#8221;);
 filter: progid XImageTransform.Microsoft.AlphaImageLoader(src=&#8217;images/sureshkumar.png&#8217;, sizingmethod=&#8217;crop&#8217;);
 cursor: hand;
}
       ]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Many of us might have nightmare&#8217;s using png images as they are not supported in IE. Here is the solution we can use to overcome that nightmare</p>
<p> </p>
<p>Method 1:</p>
<p>html&gt;body .className{<br />
 background: url(&#8221;../images/suresh kumar.png&#8221;) no-repeat;<br />
}</p>
<p>Method 2:</p>
<p>* html #id{<br />
    background:url(&#8221;../images/none.gif&#8221;);<br />
 filter: progid XImageTransform.Microsoft.AlphaImageLoader(src=&#8217;images/sureshkumar.png&#8217;, sizingmethod=&#8217;crop&#8217;);<br />
 cursor: hand;<br />
}</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sureshjain.wordpress.com/109/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sureshjain.wordpress.com/109/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sureshjain.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sureshjain.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sureshjain.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sureshjain.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sureshjain.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sureshjain.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sureshjain.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sureshjain.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sureshjain.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sureshjain.wordpress.com/109/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sureshjain.wordpress.com&blog=970003&post=109&subd=sureshjain&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sureshjain.wordpress.com/2008/08/05/solution-for-png-images-in-css/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/sureshjain-128.jpg" medium="image">
			<media:title type="html">sureshjain</media:title>
		</media:content>
	</item>
		<item>
		<title>min-height hack/workaround in IE6,IE7 &#38; Firefox</title>
		<link>http://sureshjain.wordpress.com/2008/06/13/min-height-hackworkaround-in-ie6ie7-firefox/</link>
		<comments>http://sureshjain.wordpress.com/2008/06/13/min-height-hackworkaround-in-ie6ie7-firefox/#comments</comments>
		<pubDate>Fri, 13 Jun 2008 04:37:56 +0000</pubDate>
		<dc:creator>sureshjain</dc:creator>
		
		<category><![CDATA[css]]></category>

		<category><![CDATA[hacks]]></category>

		<category><![CDATA[hacks for IE6]]></category>

		<category><![CDATA[min-height]]></category>

		<guid isPermaLink="false">http://sureshjain.wordpress.com/?p=108</guid>
		<description><![CDATA[Hey i was wondering how to use min-height for all the 3 browsers and came across a workaround and which works wonders in all the 3 browsers.
selector {
min-height: 103px;
_height: auto !important;
height: 103px;
border:1px solid red;
}
In case it helps please leave a comment.
       ]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Hey i was wondering how to use min-height for all the 3 browsers and came across a workaround and which works wonders in all the 3 browsers.</p>
<p>selector {<br />
min-height: 103px;<br />
_height: auto !important;<br />
height: 103px;<br />
border:1px solid red;<br />
}</p>
<p>In case it helps please leave a comment.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sureshjain.wordpress.com/108/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sureshjain.wordpress.com/108/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sureshjain.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sureshjain.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sureshjain.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sureshjain.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sureshjain.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sureshjain.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sureshjain.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sureshjain.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sureshjain.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sureshjain.wordpress.com/108/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sureshjain.wordpress.com&blog=970003&post=108&subd=sureshjain&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sureshjain.wordpress.com/2008/06/13/min-height-hackworkaround-in-ie6ie7-firefox/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/sureshjain-128.jpg" medium="image">
			<media:title type="html">sureshjain</media:title>
		</media:content>
	</item>
		<item>
		<title>mouse cordinates using jquery</title>
		<link>http://sureshjain.wordpress.com/2008/04/25/mouse-cordinates-using-jquery/</link>
		<comments>http://sureshjain.wordpress.com/2008/04/25/mouse-cordinates-using-jquery/#comments</comments>
		<pubDate>Fri, 25 Apr 2008 04:04:26 +0000</pubDate>
		<dc:creator>sureshjain</dc:creator>
		
		<category><![CDATA[jquery]]></category>

		<category><![CDATA[javascript events]]></category>

		<category><![CDATA[jquery events]]></category>

		<category><![CDATA[mouse cordinates]]></category>

		<guid isPermaLink="false">http://sureshjain.wordpress.com/?p=107</guid>
		<description><![CDATA[Jquery Code to get mouse co-ordinates.
$(&#8221;html&#8221;).click(function(e){       alert(&#8217;X: &#8216; + e.pageX +&#8217;, Y:&#8217;+ e.pageY);    });
       ]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><h3>Jquery Code to get mouse co-ordinates.</h3>
<p>$(&#8221;html&#8221;).click(function(e){       alert(&#8217;X: &#8216; + e.pageX +&#8217;, Y:&#8217;+ e.pageY);    });</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sureshjain.wordpress.com/107/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sureshjain.wordpress.com/107/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sureshjain.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sureshjain.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sureshjain.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sureshjain.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sureshjain.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sureshjain.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sureshjain.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sureshjain.wordpress.com/107/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sureshjain.wordpress.com/107/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sureshjain.wordpress.com/107/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sureshjain.wordpress.com&blog=970003&post=107&subd=sureshjain&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sureshjain.wordpress.com/2008/04/25/mouse-cordinates-using-jquery/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/sureshjain-128.jpg" medium="image">
			<media:title type="html">sureshjain</media:title>
		</media:content>
	</item>
		<item>
		<title>Top 25 medical colleges</title>
		<link>http://sureshjain.wordpress.com/2008/03/31/top-25-medical-colleges/</link>
		<comments>http://sureshjain.wordpress.com/2008/03/31/top-25-medical-colleges/#comments</comments>
		<pubDate>Mon, 31 Mar 2008 15:08:19 +0000</pubDate>
		<dc:creator>sureshjain</dc:creator>
		
		<category><![CDATA[Blogroll]]></category>

		<guid isPermaLink="false">http://sureshjain.wordpress.com/2008/03/31/top-25-medical-colleges/</guid>
		<description><![CDATA[

Rank
Name of Institute
City


 
 
 


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
AIIMS
CMC
AFMC (Army)
JIPMER
Seth GS Medical College
Maulana Azad Medical College
King George’s Medical University
Kasturba Medical College
St John’s
Grants Medical College
LTM Medical College, Sion
Institute of Medical Sciences, BHU
BJ Medical College
Bangalore Medical College
Amrita Institute of Medical Sciences
Madras Medical College
Osmania Medical College
Calcutta Medical College
Stanley Medical College
Christian Medical College
Government Medical College
Gandhi Medical College
University College of Medical Sciences
BJ Medical College
Jawaharlal Nehru Medical [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><table border="0" width="550" cellPadding="0" cellSpacing="0">
<tr>
<td width="69"><strong>Rank</strong></td>
<td width="350"><strong>Name of Institute</strong></td>
<td width="131"><strong>City</strong></td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td>1<br />
2<br />
3<br />
4<br />
5<br />
6<br />
7<br />
8<br />
9<br />
10<br />
11<br />
12<br />
13<br />
14<br />
15<br />
16<br />
17<br />
18<br />
19<br />
20<br />
21<br />
22<br />
23<br />
24<br />
25</td>
<td>AIIMS<br />
CMC<br />
AFMC (Army)<br />
JIPMER<br />
Seth GS Medical College<br />
Maulana Azad Medical College<br />
King George’s Medical University<br />
Kasturba Medical College<br />
St John’s<br />
Grants Medical College<br />
LTM Medical College, Sion<br />
Institute of Medical Sciences, BHU<br />
BJ Medical College<br />
Bangalore Medical College<br />
Amrita Institute of Medical Sciences<br />
Madras Medical College<br />
Osmania Medical College<br />
Calcutta Medical College<br />
Stanley Medical College<br />
Christian Medical College<br />
Government Medical College<br />
Gandhi Medical College<br />
University College of Medical Sciences<br />
BJ Medical College<br />
Jawaharlal Nehru Medical College</td>
<td>Delhi<br />
Vellore<br />
Pune<br />
Pondicherry<br />
Mumbai<br />
Delhi<br />
Lucknow<br />
Manipal<br />
Bangalore<br />
Mumbai<br />
Mumbai<br />
Varanasi<br />
Pune<br />
Bangalore<br />
Kochi<br />
Chennai<br />
Hyderabad<br />
Calcutta<br />
Chennai<br />
Ludhiana<br />
Mysore<br />
Hyderabad<br />
Delhi<br />
Ahmedabad<br />
Belgaum</td>
</tr>
</table>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sureshjain.wordpress.com/106/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sureshjain.wordpress.com/106/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sureshjain.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sureshjain.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sureshjain.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sureshjain.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sureshjain.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sureshjain.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sureshjain.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sureshjain.wordpress.com/106/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sureshjain.wordpress.com/106/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sureshjain.wordpress.com/106/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sureshjain.wordpress.com&blog=970003&post=106&subd=sureshjain&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sureshjain.wordpress.com/2008/03/31/top-25-medical-colleges/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/sureshjain-128.jpg" medium="image">
			<media:title type="html">sureshjain</media:title>
		</media:content>
	</item>
		<item>
		<title>Top 50 Govt Engineering Colleges</title>
		<link>http://sureshjain.wordpress.com/2008/03/31/top-50-govt-engineering-colleges/</link>
		<comments>http://sureshjain.wordpress.com/2008/03/31/top-50-govt-engineering-colleges/#comments</comments>
		<pubDate>Mon, 31 Mar 2008 15:07:33 +0000</pubDate>
		<dc:creator>sureshjain</dc:creator>
		
		<category><![CDATA[Blogroll]]></category>

		<guid isPermaLink="false">http://sureshjain.wordpress.com/?p=105</guid>
		<description><![CDATA[Top 50 Govt Engineering Colleges






Name of Institute
City


 
 




IIT
IIT
IIT
IIT
IIT
IIT
IT BHU
Indian School of Mines
IIT
College of Engineering, Anna University
Jadavpur University, Faculty of Engg &#38; Tech
NIT
NIT
Delhi College of Engineering
Punjab Engineering College
NIT
Motilal Nehru National Inst. of Technology
Bengal Engg and Science University,Shibpur
Netaji Subhas Institute of Technology
IIIT
Harcourt Butler Technological Institute
Malviya National Institute of Technology
MANIT
VNIT
College of Engineering
IIIT Allahabad
SVNIT
NIT
NIT
NIT
College of Engg, Andhra University, Waltair
Mumbai University [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><div class="midHeading">Top 50 Govt Engineering Colleges</div>
<div class="midText">
<table border="0" width="550" cellPadding="0" cellSpacing="0">
<tr>
<td colSpan="2"></td>
</tr>
<tr>
<td width="414"><b>Name of Institute</b></td>
<td width="136"><b>City</b></td>
</tr>
<tr>
<td vAlign="top"> </td>
<td vAlign="top"> </td>
</tr>
<tr>
<td vAlign="top">
<ol type="1">
<li>IIT</li>
<li>IIT</li>
<li>IIT</li>
<li>IIT</li>
<li>IIT</li>
<li>IIT</li>
<li>IT BHU</li>
<li>Indian School of Mines</li>
<li>IIT</li>
<li>College of Engineering, Anna University</li>
<li>Jadavpur University, Faculty of Engg &amp; Tech</li>
<li>NIT</li>
<li>NIT</li>
<li>Delhi College of Engineering</li>
<li>Punjab Engineering College</li>
<li>NIT</li>
<li>Motilal Nehru National Inst. of Technology</li>
<li>Bengal Engg and Science University,Shibpur</li>
<li>Netaji Subhas Institute of Technology</li>
<li>IIIT</li>
<li>Harcourt Butler Technological Institute</li>
<li>Malviya National Institute of Technology</li>
<li>MANIT</li>
<li>VNIT</li>
<li>College of Engineering</li>
<li>IIIT Allahabad</li>
<li>SVNIT</li>
<li>NIT</li>
<li>NIT</li>
<li>NIT</li>
<li>College of Engg, Andhra University, Waltair</li>
<li>Mumbai University Inst. of Chemical Tech</li>
<li>College of Engineering</li>
<li>NIT</li>
<li>Coimbatore Institute of Technology</li>
<li>NIT</li>
<li>JNTU</li>
<li>Govt College of Engineering</li>
<li>Annamalai University</li>
<li>University Visvesvaraya College of Engg</li>
<li>SGS Institute of Technology &amp; Science</li>
<li>Osmania Univ. College of Engineering</li>
<li>IIIT</li>
<li>NIT</li>
<li>NIT</li>
<li>Jabalpur Engineering College</li>
<li>JNTU</li>
<li>NIT</li>
<li>NIT</li>
<li>NIT</li>
</ol>
</td>
<td vAlign="top">Kharagpur<br />
Kanpur<br />
Mumbai<br />
Delhi<br />
Chennai<br />
Roorkee<br />
Varanasi<br />
Dhanbad<br />
Guwahati<br />
Chennai<br />
Calcutta<br />
Trichy<br />
Warangal<br />
New Delhi<br />
Chandigarh<br />
Surathkal<br />
Allahabad<br />
Howrah<br />
New Delhi<br />
Hyderabad<br />
Kanpur<br />
Jaipur<br />
Bhopal<br />
Nagpur<br />
Pune<br />
Allahabad<br />
Surat<br />
Rourkela<br />
Kurukshetra<br />
Kozhikode<br />
Vishakhapatnam<br />
Mumbai<br />
Thiru’puram<br />
Jamshedpur<br />
Coimbatore<br />
Durgapur<br />
Hyderabad<br />
Coimbatore<br />
Annamalainagar<br />
Bangalore<br />
Indore<br />
Hyderabad<br />
Calcutta<br />
Jalandhar<br />
Hamirpur<br />
Jabalpur<br />
Kakinada<br />
Raipur<br />
Patna<br />
Silchar</td>
</tr>
</table>
</div>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sureshjain.wordpress.com/105/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sureshjain.wordpress.com/105/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sureshjain.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sureshjain.wordpress.com/105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sureshjain.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sureshjain.wordpress.com/105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sureshjain.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sureshjain.wordpress.com/105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sureshjain.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sureshjain.wordpress.com/105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sureshjain.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sureshjain.wordpress.com/105/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sureshjain.wordpress.com&blog=970003&post=105&subd=sureshjain&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sureshjain.wordpress.com/2008/03/31/top-50-govt-engineering-colleges/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/sureshjain-128.jpg" medium="image">
			<media:title type="html">sureshjain</media:title>
		</media:content>
	</item>
		<item>
		<title>Shewag&#8217;s triple hundred [300]</title>
		<link>http://sureshjain.wordpress.com/2008/03/31/shewags-triple-hundred-300/</link>
		<comments>http://sureshjain.wordpress.com/2008/03/31/shewags-triple-hundred-300/#comments</comments>
		<pubDate>Mon, 31 Mar 2008 02:35:35 +0000</pubDate>
		<dc:creator>sureshjain</dc:creator>
		
		<category><![CDATA[Cricket]]></category>

		<guid isPermaLink="false">http://sureshjain.wordpress.com/?p=104</guid>
		<description><![CDATA[Chennai test the wicket was compeltely a batting paradise. If boycott had been a commentator he might have told even his grandma would have scored a century on this wicket.India’s really wasted the home advantage the way SA were playing it seemed that we were playing in SA  rather than in INDIA.
There should be a [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><div class="snap_preview"><a href="http://www.answers.com/topic/chennai?nafid=22" class="answerlink">Chennai</a> test the <a href="http://www.answers.com/topic/wicket?nafid=22" class="answerlink">wicket</a> was compeltely a batting paradise. If boycott had been a commentator he might have told even his grandma would have scored a century on this wicket.India’s really wasted the home advantage the way SA were playing it seemed that we were playing in SA  rather than in <a href="http://www.answers.com/topic/la-india?nafid=22" class="answerlink">INDIA</a>.</p>
<p>There should be a proper communication between the curator and the pitch community, they should discuss with the captain reagrding the kind of wicket he need.</p>
<p>The kind of craze T20 has brought in there is no use of making this kind of wicket and people will lose interest on test matches which is said to be a true test of character.</p>
<p>Highlight of this test were.</p>
<p>1. The amazing pace at which shewag scored the triple century.</p>
<p>2. Reborn of Neil Meckenzie</p>
<p>3. Lot Improved Hashim Amla</p>
<p>4. Pathetic fielding by Indians</p>
<p>anything u need to add other than this. kindly send in ur comments.</p></div>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sureshjain.wordpress.com/104/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sureshjain.wordpress.com/104/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sureshjain.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sureshjain.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sureshjain.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sureshjain.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sureshjain.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sureshjain.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sureshjain.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sureshjain.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sureshjain.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sureshjain.wordpress.com/104/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sureshjain.wordpress.com&blog=970003&post=104&subd=sureshjain&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sureshjain.wordpress.com/2008/03/31/shewags-triple-hundred-300/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/sureshjain-128.jpg" medium="image">
			<media:title type="html">sureshjain</media:title>
		</media:content>
	</item>
		<item>
		<title>Harsha Bhogle unplugged</title>
		<link>http://sureshjain.wordpress.com/2008/03/24/harsha-bhogle-unplugged/</link>
		<comments>http://sureshjain.wordpress.com/2008/03/24/harsha-bhogle-unplugged/#comments</comments>
		<pubDate>Mon, 24 Mar 2008 07:22:36 +0000</pubDate>
		<dc:creator>sureshjain</dc:creator>
		
		<category><![CDATA[Cricket]]></category>

		<guid isPermaLink="false">http://sureshjain.wordpress.com/2008/03/24/harsha-bhogle-unplugged/</guid>
		<description><![CDATA[One liners by  harsha Bhogle…Nice one
1. This was in a match btw  india and sa.. umpire rudi kuertzen  caughton camera sporting a rare smile. harsha commented….”last time  rudi kuerzten smiled there was peace in west asia“
2. This is again from the natwest trophy  final..When yuvraj got out ata very crucial [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><div class="snap_preview"><font face="Times New Roman" size="3"><span style="font-size:12pt;">One liners by  harsha Bhogle…Nice one<br />
1. This was in a match btw  india and sa.. umpire rudi kuertzen  caughton camera sporting a rare smile. harsha commented….”last time  rudi kuerzten smiled there was peace in west asia“</p>
<p>2. This is again from the natwest trophy  final..When yuvraj got out ata very crucial stage..harsha’s one liner..”  <a href="http://www.answers.com/topic/yuvraj-singh?nafid=22" class="answerlink">Yuvraj</a> singh will realize that this will be his longest walk bak tothe  pavillion “</p>
<p>3. When Sachin once got out to a lollypop offspinner (I guess  it wasMichael Vaughn) in ‘02.He wonderfully said, ” Oh what a shame. It  was reminiscent of asoldier who survived the war when all the bullets were  flying by hisnose and then got run over by a bicycle in his native town  .”</p>
<p>4. ind vs aus 2000 icc knockout  champioship played in kenya. (yuvi’sdebut)Sachin  was smasing all aussie bowlers, and then he his a superb offdrive off  lee.harsha : ” this innings by tendulkar has been a beautiful garden,  thelast shot being the most beautiful flower in it “</p>
<p>5. ind vs nzl. (in nzl  2002-2003) sehwag had MANY lucky escapes. whenhe was dropped once  again.harsha : ” its been that kind of a day. today sehwag can  walkblindfolded across a busy highway and not get runover .”</p>
<p>6.  Natwest Final:During Naser Hussain’s mistimed hits/top edges on his way to  hismaiden hundred ” Naser Hussain is trying desperately hard to  findinnovative ways of getting himself out”</p>
<p>7.       in the same  match… ” if you are not watching this segmentof play, don’t ever call  yourself a cricket lover anymore. you arewatching cricket of a very high  order here”.</p>
<p>8.       Here’s n old one…at perth Adam Gilchrist took  a blinder andhe described Gilly’s dive thus, ” … some of the sea-gulls  flyinghere are going to get a complex.”</p>
<p>9.       when tendulkar got a  hundred he said” touch of Class &amp; stamp of Authority “</p>
<p>10.    recently in india’s tour of  south  africa…he blurted outsuddenly after  sreesanth’s antiques with the bat and hips…” dis isthe funniest thing u’ll  ever watch on a cricket field”…!!</p>
<p>11.   When Smith dropped <a href="http://www.answers.com/topic/sachin-tendulkar?nafid=22" class="answerlink">Sachin</a> in  the 2nd TestGraeme Smith would be hoping that the world under his  feetopens up &amp; he would find a crevice large enough for him to  slipthrough….</p>
<p>12.   After india lost the recent test series in  SAIndia lost the series because they  surprised themselves by winning the1st test . A win should never be a  surprise .</p>
<p>13.   After Anil Kumble scored his maiden Ton…this is what  our greatman had to say…” This is the most romantic moment in  Indian Cricket…..”</p>
<p>14.   ” The last time Billy gave lbw , Berlin wall was not there  ,there was peace in Afganistan,……………….”</p>
<p>15.   In a match  between <a href="http://www.answers.com/topic/aus-3?nafid=22" class="answerlink">Aus</a> n SL , Harsha said to <a href="http://www.answers.com/topic/ian-chappell?nafid=22" class="answerlink">Ian Chappell</a> , ” Iam sure you’ll never  become a lawyer , I understand everything you say”Ian Chappell had  no counter for this.</p>
<p>16. Harsha was hosting the ICC Awards before the T20  World Cup and hecalled on Jonty Rhodes to present an award.So as Jonty  began climbing down the stairs, Harsha exclaimed, ”it’spretty unusual to  see Jonty walk down the stairs, I thought he mightslide down them  !”</p>
<p>17.    when the wickets were falling in a heap in the T20  match…THIS SERIES IS SPONSERED BY KFC AND THE WICKETS ARE FALLING  FASTERTHAN THEIR (KFC’s) DELIVERIES….</p>
<p>18. when Gambhr was dropped  twice on consecutive deliveries, - ” Weshould conduct a dream job in  Australia &amp; the winner will get  to standin the slip region!!!!!!”</p>
<p>19. When Kumble and Ishant were  batting, Hussey dropped a catch ofIshant off the bowling of Johnson and  Harsha exclaimed,” It’s autumnin Adelaide. It’s the time when leaves change  their colour and theystart dropping. Here, as well the catches are  dropping..”.</p>
<p>20.   In a match, dravid left a ball alone while batting. To  thisgavaskar, who was commenting alongside harsha was very impressed  bythe way he left the ball. He went on appreciating that for a minute  orso. After this harsha’s comment was, ” Sunny, you nearly got an  orgasmof happiness, didn’t u!” &amp; then both burst out into  laughter!</p>
<p>21. dhoni is battin with anil kumble.. dhoni calls for a  tightsingle,n harsha has this to say,” dhoni scrambles for a single  ncauses anil kumble n all of his 37 yrs to rush to the other  end..”</p>
<p>22.   after shaun tait did not live up to the hype Cricket  Australiacreated around him,  ponting took him off the attack.harsha, in his own inimitable  style:’shaun tait should go up to ponting and say ” hello mr ponting,  myname is shaun tait, and i am supposed to take 45 wickets in this  testmatch “</p>
<p>23.   HB was analysing the innings of laxman…laxman  made a crucial79 in the second innings.HB said something like- ” aussies  must be feeling that wenever we areon the verge of 17th,this man(laxman)  comes in between!”</p>
<p>24.   RP SIngh walked in but it was Laxman on strike.  So the Aussieswanted him to take a single and get RP on strike… so they  spread outthe field completely, with only the keeper, one slip and one  gullyinside the 30 yard circle..That’s when Harsha says ..”now  suddenly, <a href="http://www.answers.com/topic/bradman-don?nafid=22" class="answerlink">Don Bradman</a> is batting out there in the middle… “</p>
<p>25.    Seeing the flock of seagulls flying across the pitch Harshatells Wasim Akram  : ” As you would say in Punjabi… kee gull hai? seagull hai!!! “</p>
<p>26.    when michael clarke was caught at slip off kumble , he was stillwatin 4 da  decision , over this harsha said, ” i think he is waitinfor tomorrow’s  newspaper to declare him out”</p>
<p>27.   Yuvraj hit the long six off brett lee  went outside the stadiumin durban‘are there people working late in  the office there……. we wantthe ball back’27.   in t-20 gayle hit  a monstrous six but but fell just short of thegolf course outside the  stadiumharsha: ” wat a poor shot just misses the golf course “</p>
<p>28.    ” if i cannot be tendulkar then tendulkar can also not be me “</p>
<p>29.   the  palyers told their favourite shots while coming on tobat….Collingwood said “a little nurdle of the pads” and <a href="http://www.answers.com/topic/kevin-pietersen?nafid=22" class="answerlink">Pietersen</a> saidblocking  the ball….Harsha commented ” the next thing they’ll say is that their  favouriteshot is to leave the ball alone”</p>
<p>30. what an introduction to  India Australia semifinal: ” This is abattle between unstoppable force  against immovable object “</span></font></div>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sureshjain.wordpress.com/103/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sureshjain.wordpress.com/103/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sureshjain.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sureshjain.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sureshjain.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sureshjain.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sureshjain.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sureshjain.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sureshjain.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sureshjain.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sureshjain.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sureshjain.wordpress.com/103/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sureshjain.wordpress.com&blog=970003&post=103&subd=sureshjain&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sureshjain.wordpress.com/2008/03/24/harsha-bhogle-unplugged/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/sureshjain-128.jpg" medium="image">
			<media:title type="html">sureshjain</media:title>
		</media:content>
	</item>
		<item>
		<title>Common Mistakes Webdeveloper commit</title>
		<link>http://sureshjain.wordpress.com/2008/03/18/common-mistakes-webdeveloper-commit/</link>
		<comments>http://sureshjain.wordpress.com/2008/03/18/common-mistakes-webdeveloper-commit/#comments</comments>
		<pubDate>Tue, 18 Mar 2008 04:04:41 +0000</pubDate>
		<dc:creator>sureshjain</dc:creator>
		
		<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://sureshjain.wordpress.com/?p=102</guid>
		<description><![CDATA[It&#8217;s been more than 3 years now me working on web and I’ve been guilty of making many mistakes myself through the all these years  However, I do my best to learn, and avoid making the same mistakes over and over again.
DOCTYPE confusion
Completely missing, incorrect, or in the wrong place. I have seen HTML 4.0 [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>It&#8217;s been more than 3 years now me working on web and I’ve been guilty of making many mistakes myself through the all these years  However, I do my best to learn, and avoid making the same mistakes over and over again.</p>
<p><strong>DOCTYPE confusion</strong></p>
<p>Completely missing, incorrect, or in the wrong place. I have seen <abbr title="HyperText Markup Language">HTML</abbr> 4.0 Transitional used in documents containing <abbr title="Extensible HyperText Markup Language">XHTML</abbr> markup as well as in <code>&lt;frameset&gt;</code> documents, DOCTYPE declarations appearing after the opening <code>&lt;html&gt;</code> tag, and incomplete DOCTYPES.</p>
<dt><strong>&lt;span&gt; mania</strong> </dt>
<dd>A common way of styling something with <abbr title="Cascading Style Sheets">CSS</abbr> is to wrap it in a <code>&lt;span&gt;</code> element with a class attribute and use that to hook up the styling. I’m sure we’ve all seen things like <code>&lt;span class="heading"&gt;</code> and <code>&lt;span class="bodytext"&gt;</code>. </dd>
<dt>(too much) Visual thinking </dt>
<dd>Treating the web as <acronym title="What You See Is What You Get">WYSIWYG</acronym> – starting off by focusing on how things look instead of thinking about structure first, and presentation later. </dd>
<dd></dd>
<dt><strong>Lack of semantics</strong> </dt>
<dd>Non-semantic markup. Basing the choice of which <abbr>HTML</abbr> element to use on the way most graphical browsers render it by default, instead of on which <strong>meaning</strong> the element has. </dd>
<dd></dd>
<dt><strong>Character encoding mismatches</strong> </dt>
<dt>Specifying one character encoding in the <abbr title="Hypertext Transfer Protocol">HTTP</abbr> header sent by the server, and using another in the document. This may confuse browsers and make them display the document improperly. </dt>
<dt></dt>
<dt><strong>Bad alt-attributes</strong> </dt>
<dd>Missing or useless. <code>&lt;img&gt;</code> elements with missing <code>alt</code> attributes can be found in billions on the web. Not quite as common are useless attribute values like “spacer <acronym title="Graphics Interchange Format">GIF</acronym> used to make the layout look good”, “big blue bullet with dropshadow”, and “<acronym title="Joint Photographic Experts Group">JPEG</acronym> image, 123 KB”. Remember, the <code></code>alt attribute is <strong>required</strong> for <code>&lt;img&gt;</code> and <code>&lt;area&gt;</code> elements. </dd>
<dd></dd>
<dt><strong>Invalid id and class attributes</strong> </dt>
<dd>Multiple uses of the same value for the <code>id</code> attribute. Invalid characters used in id and class attributes and <abbr>CSS</abbr> selectors.For <abbr>CSS</abbr>:</p>
<blockquote cite="http://www.w3.org/TR/CSS21/syndata.html#q6"><p>In <abbr>CSS</abbr> 2.1, identifiers (including element names, classes, and IDs in selectors) can contain only the characters [A-Za-z0-9] and <abbr title="International Organization for Standardization">ISO</abbr> 10646 characters U+00A1 and higher, plus the hyphen (-) and the underscore (_); they cannot start with a digit.</p></blockquote>
<p>For <abbr>HTML</abbr>:</p>
<blockquote cite="http://www.w3.org/TR/html4/types.html#h-6.2"><p>ID and NAME tokens must begin with a letter ([A-Za-z]) and may be followed by any number of letters, digits ([0-9]), hyphens (“-“), underscores (“_”), colons (“:”), and periods (“.”).</p></blockquote>
</dd>
<dt><strong>Browser sniffing</strong> </dt>
<dd>Using scripts, server or client side, in an attempt to detect the visitor’s browser, and send or execute browser-specific code. Very commonly fails for reasons like new browsers, updated browsers, and user agent spoofing (Opera does this by default). </dd>
<dd></dd>
<dt><strong>Missing units in <abbr>CSS</abbr></strong> </dt>
<dd>Length values (horizontal or vertical measurements) require units in <abbr>CSS</abbr>, except when the value is zero. It’s not like in <abbr>HTML</abbr>, where you can type <code>width="10"</code>. In <abbr>CSS</abbr>, it has to be <code>width:10px;</code> (or whatever unit you’re using). </dd>
<dd></dd>
<dt><strong>Browser-specific <abbr>CSS</abbr>.</strong> </dt>
<dd>Scrollbar styling, expressions, filters etc. Proprietary <abbr>CSS</abbr> that only works in Internet Explorer. Invalid, too. </dd>
<dd></dd>
<dt><strong>JavaScript dependency</strong> </dt>
<dd>Making a site depend on JavaScript. More people than you’d like are either using a browser with no JavaScript support, or have disabled JavaScript in their browser. Current stats indicate that this is 8-10 percent of web users. Search engine robots currently don’t interpret JavaScript very well either, so if your site requires JavaScript to navigate, say goodbye to good search engine rankings. </dd>
<dd></dd>
<dt><strong>Flash dependency</strong> </dt>
<dd>Assuming everybody has Flash installed. Not everybody has. And most search engine robots do not (Google has reportedly started experimenting with indexing of Flash files, but they still recommend that you make sure all your text content and navigation is available in <abbr>HTML</abbr> files), so if your whole site depends on Flash being available, you’re not going to score high with search engines. </dd>
<dd></dd>
<dt><strong>Text as image</strong> </dt>
<dd>Making images of text, and not providing a more accessible alternative. Not only does it take longer for visitors to download images instead of text, you also make it impossible for most visitors to enlarge the text. </dd>
<dd></dd>
<dt><strong>Bad forms</strong> </dt>
<dd>Inaccessible, hard-to-use forms. Learn to use the <code>&lt;label&gt;</code>, <code>&lt;fieldset&gt;</code>, and <code>&lt;legend&gt;</code> elements, and <strong>do not use a “Reset” button</strong>. </dd>
<dt>Old skool <abbr>HTML</abbr> </dt>
<dd>Multiple nested tables, spacer GIFs, <code>&lt;font&gt;</code> elements, presentational markup. So common I don’t really have to mention it here. </dd>
<dt>Being <abbr title="Internet Explorer">IE</abbr>-centric </dt>
<dd>Coding for <abbr>IE</abbr>/Win first, then adjusting for others, if there is time. </dd>
<dt>Invalid <abbr>HTML</abbr> attributes </dt>
<dd>Using deprecated or browser specific attributes like <code>marginwidth</code>, <code>leftmargin</code>, <code>language</code>, <code>height</code> for <code>&lt;table&gt;</code> elements, and <code>border</code> for <code>&lt;img&gt;</code> elements (in strict DOCTYPEs) just to name a few. </dd>
<dt>Unencoded ampersands </dt>
<dd>Many URIs contain long query strings with unencoded ampersands (&amp;). This is invalid, and <a href="http://www.456bereastreet.com/archive/200406/ampersands_and_validation/" title="Ampersands and validation">may cause problems</a>. Ampersands must be written as <code>&amp;</code>. </dd>
<p>Did I miss your favourite mistake? Add it to the list</p>
<p>URL: <a href="http://www.456bereastreet.com/archive/200408/web_development_mistakes/">http://www.456bereastreet.com/archive/200408/web_development_mistakes/</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sureshjain.wordpress.com/102/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sureshjain.wordpress.com/102/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sureshjain.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sureshjain.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sureshjain.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sureshjain.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sureshjain.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sureshjain.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sureshjain.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sureshjain.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sureshjain.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sureshjain.wordpress.com/102/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sureshjain.wordpress.com&blog=970003&post=102&subd=sureshjain&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sureshjain.wordpress.com/2008/03/18/common-mistakes-webdeveloper-commit/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/sureshjain-128.jpg" medium="image">
			<media:title type="html">sureshjain</media:title>
		</media:content>
	</item>
		<item>
		<title>using getElementByTagsName</title>
		<link>http://sureshjain.wordpress.com/2008/03/12/using-getelementbytagsname/</link>
		<comments>http://sureshjain.wordpress.com/2008/03/12/using-getelementbytagsname/#comments</comments>
		<pubDate>Wed, 12 Mar 2008 12:55:25 +0000</pubDate>
		<dc:creator>sureshjain</dc:creator>
		
		<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://sureshjain.wordpress.com/2008/03/12/using-getelementbytagsname/</guid>
		<description><![CDATA[var divelements=document.getElementById(divid).getElementsByTagName(&#8221;input&#8221;);
       ]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>var divelements=document.getElementById(divid).getElementsByTagName(&#8221;input&#8221;);</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sureshjain.wordpress.com/101/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sureshjain.wordpress.com/101/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sureshjain.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sureshjain.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sureshjain.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sureshjain.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sureshjain.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sureshjain.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sureshjain.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sureshjain.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sureshjain.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sureshjain.wordpress.com/101/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sureshjain.wordpress.com&blog=970003&post=101&subd=sureshjain&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sureshjain.wordpress.com/2008/03/12/using-getelementbytagsname/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/sureshjain-128.jpg" medium="image">
			<media:title type="html">sureshjain</media:title>
		</media:content>
	</item>
		<item>
		<title>Legacy of Indian Sports going down</title>
		<link>http://sureshjain.wordpress.com/2008/03/12/legacy-of-indian-sports-going-down/</link>
		<comments>http://sureshjain.wordpress.com/2008/03/12/legacy-of-indian-sports-going-down/#comments</comments>
		<pubDate>Wed, 12 Mar 2008 03:54:37 +0000</pubDate>
		<dc:creator>sureshjain</dc:creator>
		
		<category><![CDATA[Cricket]]></category>

		<guid isPermaLink="false">http://sureshjain.wordpress.com/?p=100</guid>
		<description><![CDATA[Monday it was shocker to hear Indian hockey team didn&#8217;t qualified for the Olympics, me being a great hockey fan following it from years too got disappointed then thought why is happening Indian Hockey Team has not own a medal its been ages now.
There are plenty of things that comes in mind reagrding all this [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Monday it was shocker to hear Indian hockey team didn&#8217;t qualified for the Olympics, me being a great hockey fan following it from years too got disappointed then thought why is happening Indian Hockey Team has not own a medal its been ages now.</p>
<p>There are plenty of things that comes in mind reagrding all this but i love to say our Hockey team players are still the best in the world the kind of stick work they show is still the best.</p>
<p>Only thing they need is confidence and popularise Indian Hockey in small Town as well to get new rare talents which are in plenty in India only thing is we need to exploit them</p>
<p>See Indian cricket if a player Hits a six he will be getting Lakh ruppess and more.</p>
<p>Now a days people started thinking if i am not a part of Indian team then atleast i can be part of ICL or IPL and can earn lot of money  but Think about our Hockey players they get only 1000 ruppees if they score goal compare to Lakh rupees  got by a crickter.</p>
<p>Instead of playing blame game on IHF or Indian Hockey team let us  encourage our hard working players to win major tournaments. Before closing on this blog i again wish to say please get some help from Dhanraj pillay the power house of Indian Hockey.</p>
<p>Hope u like the column, any feedbacks or comments will be help me in future to improve on writing more..</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sureshjain.wordpress.com/100/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sureshjain.wordpress.com/100/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sureshjain.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sureshjain.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sureshjain.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sureshjain.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sureshjain.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sureshjain.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sureshjain.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sureshjain.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sureshjain.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sureshjain.wordpress.com/100/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sureshjain.wordpress.com&blog=970003&post=100&subd=sureshjain&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://sureshjain.wordpress.com/2008/03/12/legacy-of-indian-sports-going-down/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/sureshjain-128.jpg" medium="image">
			<media:title type="html">sureshjain</media:title>
		</media:content>
	</item>
	</channel>
</rss>