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

<channel>
	<title>FeeLitFresh</title>
	<atom:link href="http://feelitfresh.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://feelitfresh.com</link>
	<description>shameer&#039;s blog</description>
	<lastBuildDate>Fri, 05 Mar 2010 05:58:51 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Basics of Magento EAV Database Model</title>
		<link>http://feelitfresh.com/web20/basics-of-magento-eav-database-model/</link>
		<comments>http://feelitfresh.com/web20/basics-of-magento-eav-database-model/#comments</comments>
		<pubDate>Fri, 05 Mar 2010 05:55:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://feelitfresh.com/?p=545</guid>
		<description><![CDATA[Magento database heavily utilizes an Entity Attribute Value (EAV) data model. Magento Key data are modeled using the Entity Attribute Value method (EAV).
Utilizing an EAVmodeling pattern allows for unlimited attributes on any product, category, customer, or order.  As is often  the case, the cost of flexibility is complexity EAV depletes a programmer’s ability to write ad-hoc queries against [...]]]></description>
			<content:encoded><![CDATA[<p>Magento database heavily utilizes an Entity Attribute Value (EAV) data model. Magento Key data are modeled using the Entity Attribute Value method (EAV).</p>
<p>Utilizing an EAVmodeling pattern allows for unlimited attributes on any product, category, customer, or order.  As is often  the case, the cost of flexibility is complexity EAV depletes a programmer’s ability to write ad-hoc queries against the data.</p>
<p><a href="http://feelitfresh.com/wp-content/uploads/2010/03/magento.jpg"><img class="size-full wp-image-550 alignnone" title="magento" src="http://feelitfresh.com/wp-content/uploads/2010/03/magento.jpg" alt="magento" width="444" height="75" /><br />
</a>An understanding of EAV principles and  how they have been modeled into Magento is highly  recommended before  making changes to the Magento data or the Magento schema. But a detailed tutorial on the EAV database model  missing in  magento documentation.</p>
<p><span id="more-545"></span> EAV  modelling is consist of as  “vertical” modeling instead of “horizontal” modeling of columns in a database table. Instead of a table consisting of a number of columns, denoting attributes of a conceptual piece of data, the attributes are stored in one column of a separate table.</p>
<p>Let us consider a traditional user table as shown below</p>
<table class="normTable" border="0" cellspacing="0" >
<tbody>
<tr>
<th>user_id</th>
<th>username</th>
<th>password</th>
<th>first_name</th>
<th>last_name</th>
</tr>
<tr>
<td>1</td>
<td>mohammed</td>
<td>[md5]</td>
<td>Mohammed</td>
<td>Umar</td>
</tr>
<tr>
<td>2</td>
<td>shameer</td>
<td>[md5]</td>
<td>Shameer</td>
<td>Ali</td>
</tr>
</tbody>
</table>
<p>In an EAV database modelling, one conceptually records the data as three columns.<br />
<strong> 1)The entity</strong>: An entity is a core thing that is being modeled. It more like an Object like user,product etc.. For the above Example we can defile the user entity table &#8216;user_entity&#8217; as below</p>
<table class="normTable" border="0" cellspacing="0">
<tbody>
<tr>
<th>user_id</th>
<th>username</th>
<th>password</th>
</tr>
<tr>
<td>1</td>
<td>mohammed</td>
<td>[md5]</td>
</tr>
<tr>
<td>2</td>
<td>shameer</td>
<td>[md5]</td>
</tr>
</tbody>
</table>
<p><strong> 2)The attribute or parameter</strong>: Entity attributes work much like a regular property of an object. The user &#8216;eav_attribute&#8217; table  will be like below</p>
<table class="normTable" border="0" cellspacing="0" >
<tbody>
<tr>
<th>attribute_id</th>
<th>name</th>
<th>display</th>
<th>type</th>
</tr>
<tr>
<td>1</td>
<td>first_name</td>
<td>First</td>
<td>varchar</td>
</tr>
<tr>
<td>2</td>
<td>last_name</td>
<td>Last</td>
<td>varchar</td>
</tr>
</tbody>
</table>
<p><strong> 3)The value</strong>: This is the value of each  attribute. For the user value table &#8216;user_varchar&#8217; will look like below</p>
<table class="normTable" border="0" cellspacing="0">
<tbody>
<tr>
<th>entity_id</th>
<th>attribute_id</th>
<th>value</th>
</tr>
<tr>
<td>1</td>
<td>1</td>
<td>Mohammed</td>
</tr>
<tr>
<td>2</td>
<td>1</td>
<td>Shameer</td>
</tr>
<tr>
<td>1</td>
<td>2</td>
<td>Umar</td>
</tr>
<tr>
<td>2</td>
<td>2</td>
<td>Ali</td>
</tr>
</tbody>
</table>
<p>As you can see from looking at the above tables, adding a new attribute to a user simply involves adding a new record in the eav_attribute table. Adding a new attribute does not involve altering tables to add any new columns.This will make  the objects or entities to easily manage adding new attributes to most parts of the system, while keeping the database schema consistent across installations.</p>
]]></content:encoded>
			<wfw:commentRss>http://feelitfresh.com/web20/basics-of-magento-eav-database-model/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using JQuery with Wordpress</title>
		<link>http://feelitfresh.com/blogging/using-jquery-with-wordpress/</link>
		<comments>http://feelitfresh.com/blogging/using-jquery-with-wordpress/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 04:58:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Jquery]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://feelitfresh.com/?p=540</guid>
		<description><![CDATA[Jquery is one of the topmost javascript libraries now using with wordpress. Jquery is having a huge number of plugins which will make our blog amazing  look and feel.
For using Jquery with Wordpress we don&#8217;t need to  include it in our theme folder.
We can use the following code for adding the jquery support to the [...]]]></description>
			<content:encoded><![CDATA[<p>Jquery is one of the topmost javascript libraries now using with wordpress. Jquery is having a huge number of plugins which will make our blog amazing  look and feel.<br />
For using Jquery with Wordpress we don&#8217;t need to  include it in our theme folder.<br />
We can use the following code for adding the jquery support to the Wordpress blog.</p>
<div class="kod">
<pre>function jquery_init() {
     if (!is_admin()) {
	wp_enqueue_script('jquery');
     }
}
add_action('init', 'jquery_init');</pre>
</div>
<p>For plugin development, add the code in your plugin file, otherwise, add this code to your theme&#8217;s functions.php file. The is_admin() check is to prevent script queuing on your admin pages.<br />
<span id="more-540"></span></p>
<p>If you want to load  jQuery from the <a href="http://code.google.com/apis/ajaxlibs/">Google AJAX Library</a>, you can use the following code.</p>
<div class="kod">
<pre>function jquery_init() {
  if (!is_admin()) {
	wp_deregister_script('jquery');
	wp_register_script('jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js', false, '1.3.2');
	wp_enqueue_script('jquery');
  }
}
add_action('init', 'jquery_init');</pre>
</div>
<p>There are a number of advantageous why you would want to use the Google AJAX Library to load jQuery, but remember, Google has been down before, so be ready to comment out the first two lines if necessary.</p>
]]></content:encoded>
			<wfw:commentRss>http://feelitfresh.com/blogging/using-jquery-with-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Indian railway online ticket reservation</title>
		<link>http://feelitfresh.com/our-world/indian-railway-online-ticket-reservation/</link>
		<comments>http://feelitfresh.com/our-world/indian-railway-online-ticket-reservation/#comments</comments>
		<pubDate>Fri, 15 Jan 2010 05:11:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Our World]]></category>
		<category><![CDATA[Indian Railway]]></category>

		<guid isPermaLink="false">http://feelitfresh.com/?p=524</guid>
		<description><![CDATA[Indian Railways one of the largest and busiest rail networks in the world has a fully functional online ticket booking facility. Indian Railways official Website offer online train reservation along with the information details related to PNR.
Indian Railway offers online railway reservation through IRCTC website (Indian Railway Catering and Tourism Corporation Limited) . IRCTC also [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.indianrail.gov.in/"><img class="alignleft size-full wp-image-525" title="India Railway" src="http://feelitfresh.com/wp-content/uploads/2010/01/Indian_Railway_logo2.gif" alt="India Railway" width="135" height="135" /></a>Indian Railways one of the largest and busiest rail networks in the world has a fully functional online ticket booking facility.<a href="http://www.indianrail.gov.in/"> Indian Railways official Website</a> offer online train reservation along with the information details related to PNR.</p>
<p>Indian Railway offers online railway reservation through <a href="http://www.irctc.co.in/" target="_blank">IRCTC website</a> (Indian Railway Catering and Tourism Corporation Limited) . IRCTC also offers rail reservation through mobiles using Speech recognition, GPRS and CDMA technologies available on various mobile Operators. IRCTC also introduced the simplest way to book your Railway ticket using just two SMS messages (Short Messaging Service).</p>
<p><span id="more-524"></span><a href="http://www.irctc.co.in/"><img class="size-medium wp-image-529 alignnone" title="irctc" src="http://feelitfresh.com/wp-content/uploads/2010/01/irctc-300x101.jpg" alt="irctc" width="471" height="101" /></a></p>
<p>Using IRCTC We can book or reserve railway tickets from our home and take printouts of the e-tickets. We can use either our bank ATM cards or credit cards  for paying the ticket charge.</p>
<p><a href="http://www.indianrail.gov.in/" target="_blank">Indian Railways official website</a> permits a passenger to check the information related to reservations, trains, PNR status and seats availability through Indian railways Ticket reservation website.Indian Railways Ticket Reservation system online puts each and every information concerning rail bookings before your travel time arrives. Indian railways are globally acclaimed for its massive hauling capacity and train service.</p>
]]></content:encoded>
			<wfw:commentRss>http://feelitfresh.com/our-world/indian-railway-online-ticket-reservation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fix for Can’t login to admin after magento installation</title>
		<link>http://feelitfresh.com/open-source/fix-for-can%e2%80%99t-login-to-admin-after-magento-installation/</link>
		<comments>http://feelitfresh.com/open-source/fix-for-can%e2%80%99t-login-to-admin-after-magento-installation/#comments</comments>
		<pubDate>Wed, 13 Jan 2010 04:43:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Magento]]></category>

		<guid isPermaLink="false">http://feelitfresh.com/?p=518</guid>
		<description><![CDATA[While installing Magento Fresh copy to our local machine using xampp, wamp, mamp  or any of the Lamp Platform we will usually cant login to the admin  panel. It will not show any error on the user account but will return to the same login page after we submitted the page.
The problem occurs because magneto [...]]]></description>
			<content:encoded><![CDATA[<p>While installing Magento Fresh copy to our local machine using xampp, wamp, mamp  or any of the Lamp Platform we will usually cant login to the admin  panel. It will not show any error on the user account but will return to the same login page after we submitted the page.</p>
<p>The problem occurs because magneto could not store cookies. We run it as localhost and localhost is not true domain but to store cookies we need a domain. That’s why login stops without saying any word.</p>
<p>When I tried this  in different browsers  I found that we can login the admin page in safari without doing any change but can&#8217;t login using  firefox or Internet explorer.  We can solve the problem in many ways.</p>
<p><span id="more-518"></span></p>
<h3>Solution 1.  Creating a virtual host</h3>
<p>We can solve the problem by simply setting up a virtual host like <strong>http://magento.local</strong> I fixed the problem by this method since it seems to be very easy and reliable.<br />
For setting up a virtual host for magento just edit the httpd.conf  and add the following line to the end of the file</p>
<div class="kod">NameVirtualHost 127.0.0.1<br />
&lt;VirtualHost 127.0.0.1 &gt;<br />
ServerName magento.local<br />
DocumentRoot &#8220;D:/wamp/www/magento&#8221;<br />
&lt;/VirtualHost&gt;</div>
<p>Then edit the <strong>/etc/hosts</strong> in linux  or <strong>C:\WINDOWS\system32\drivers\etc\hosts</strong> in Windows and add the following to the file</p>
<div class="kod">127.0.0.1  magento.local</div>
<h3>Solution 2. Change the localhost url to IP</h3>
<p>Change <strong>http://localhost/magento/index.php/admin </strong>to<strong> http://127.0.0.1/magento/index.php/admin</strong>. But this will not work for all the cases</p>
<h3>Solution 3. Comment some line of code</h3>
<p>Edit <strong>app\code\core\Mage\Core\Model\Session\Abstract\varien.php</strong> and Comment the following lines (may be at line 78…);</p>
<div class="kod">$this-&gt;getCookie()-&gt;getDomain(),<br />
$this-&gt;getCookie()-&gt;isSecure(),<br />
$this-&gt;getCookie()-&gt;getHttponly()</div>
]]></content:encoded>
			<wfw:commentRss>http://feelitfresh.com/open-source/fix-for-can%e2%80%99t-login-to-admin-after-magento-installation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Low Floor Volvo AC bus Schedule From Technopark</title>
		<link>http://feelitfresh.com/our-world/low-floor-volvo-ac-bus-schedule-from-technopark/</link>
		<comments>http://feelitfresh.com/our-world/low-floor-volvo-ac-bus-schedule-from-technopark/#comments</comments>
		<pubDate>Mon, 14 Dec 2009 14:05:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Our World]]></category>
		<category><![CDATA[Technopark]]></category>
		<category><![CDATA[Trivandrum]]></category>

		<guid isPermaLink="false">http://feelitfresh.com/?p=502</guid>
		<description><![CDATA[The technoparktoday.com has carried an article, with a Low Floor Volvo AC bus schedule chart from Thiruvananthapuram City to Techno Park and vice-versa.
The site says that, Due to traffic jams, rains and Trivandrum’s trademark Secretariat marches, actual timing may differ a bit, but please continue supporting KSTRC by using this service regularly, even if a [...]]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://www.technoparktoday.com/" target="_blank">technoparktoday.com</a> has carried an article, with a Low Floor Volvo AC bus schedule chart from Thiruvananthapuram City to Techno Park and vice-versa.</p>
<p><a class="lightbox" href="http://feelitfresh.com/wp-content/uploads/2009/12/low_floor_bus_trivandrum.jpg"><img class="alignleft size-medium wp-image-505" title="low_floor_bus_trivandrum" src="http://feelitfresh.com/wp-content/uploads/2009/12/low_floor_bus_trivandrum-300x168.jpg" alt="low_floor_bus_trivandrum" width="217" height="121" /></a>The site says that, Due to traffic jams, rains and Trivandrum’s trademark Secretariat marches, actual timing may differ a bit, but please continue supporting KSTRC by using this service regularly, even if a bit inconvenient in the beginning. And if you can, request the staff to introduce more services during our peak hours. exhorting all techies to make use of the bus service to the most. <span id="more-502"></span><br />
The site published the following detailed time schedule for the Low Floor bus  schedule in the Kaniyapuram to City route via Technopark.</p>
<table class="MsoTableLightListAccent3" style="border: medium none ; border-collapse: collapse;" border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td style="padding: 0in 3.4pt; background: #444444 none repeat scroll 0% 0%; width: 156.7pt; height: 25px;" width="176" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><strong><span style="color: white;">From  City</span></strong></p>
</td>
<td style="padding: 0in 3.4pt; background: #444444 none repeat scroll 0% 0%; width: 207pt; height: 25px;" width="176" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><strong><span style="color: white;">To  City</span></strong></p>
</td>
</tr>
<tr>
<td style="padding: 0in 3.4pt; width: 206.7pt;" width="176" valign="top">
<table class="MsoTableMediumList1Accent3" style="border: medium none; width: 183pt; border-collapse: collapse;" border="1" cellspacing="0" cellpadding="0" width="244">
<tbody>
<tr style="height: 23pt;">
<td style="padding: 0in 3.4pt; width: 61pt; height: 23pt;" width="61" valign="top">
<p class="MsoNormal"><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">Terminus</span></p>
<p><span class="SpellE">Kovalam</span></td>
<td style="padding: 0in 3.4pt; width: 61pt; height: 23pt;" width="61" valign="top">
<p class="MsoNormal"><span class="SpellE"><strong><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">Technopark</span></strong></span><strong> </strong></p>
</td>
<td style="padding: 0in 3.4pt; width: 61pt; height: 23pt;" width="61" valign="top">
<p class="MsoNormal"><strong><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">Terminus</span></strong></p>
<p><span class="SpellE"><strong>Kaniyapuram</strong></span><strong> </strong><strong> </strong></td>
</tr>
<tr style="height: 12.75pt;">
<td style="border: medium none; padding: 0in 3.4pt; background: #abacae none repeat scroll 0% 0%; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">0600*</span></p>
</td>
<td style="border: medium none; padding: 0in 3.4pt; background: #abacae none repeat scroll 0% 0%; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><strong><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">0640</span></strong></p>
</td>
<td style="border: medium none; padding: 0in 3.4pt; background: #abacae none repeat scroll 0% 0%; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">0645</span></p>
</td>
</tr>
<tr style="height: 12.75pt;">
<td style="border: medium none; padding: 0in 3.4pt; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">0700*</span></p>
</td>
<td style="border: medium none; padding: 0in 3.4pt; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><strong><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">0740</span></strong></p>
</td>
<td style="border: medium none; padding: 0in 3.4pt; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">0745</span></p>
</td>
</tr>
<tr style="height: 12.75pt;">
<td style="border: medium none; padding: 0in 3.4pt; background: #abacae none repeat scroll 0% 0%; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">0645</span></p>
</td>
<td style="border: medium none; padding: 0in 3.4pt; background: #abacae none repeat scroll 0% 0%; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><strong><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">0750</span></strong></p>
</td>
<td style="border: medium none; padding: 0in 3.4pt; background: #abacae none repeat scroll 0% 0%; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">0800</span></p>
</td>
</tr>
<tr style="height: 12.75pt;">
<td style="border: medium none; padding: 0in 3.4pt; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">0745</span></p>
</td>
<td style="border: medium none; padding: 0in 3.4pt; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><strong><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">0855</span></strong></p>
</td>
<td style="border: medium none; padding: 0in 3.4pt; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">0900</span></p>
</td>
</tr>
<tr style="height: 12.75pt;">
<td style="border: medium none; padding: 0in 3.4pt; background: #abacae none repeat scroll 0% 0%; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">0845</span></p>
</td>
<td style="border: medium none; padding: 0in 3.4pt; background: #abacae none repeat scroll 0% 0%; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><strong><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">0955</span></strong></p>
</td>
<td style="border: medium none; padding: 0in 3.4pt; background: #abacae none repeat scroll 0% 0%; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">1000</span></p>
</td>
</tr>
<tr style="height: 12.75pt;">
<td style="border: medium none; padding: 0in 3.4pt; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">0930</span></p>
</td>
<td style="border: medium none; padding: 0in 3.4pt; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><strong><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">1040</span></strong></p>
</td>
<td style="border: medium none; padding: 0in 3.4pt; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">1045</span></p>
</td>
</tr>
<tr style="height: 12.75pt;">
<td style="border: medium none; padding: 0in 3.4pt; background: #abacae none repeat scroll 0% 0%; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">1000</span></p>
</td>
<td style="border: medium none; padding: 0in 3.4pt; background: #abacae none repeat scroll 0% 0%; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><strong><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">1100</span></strong></p>
</td>
<td style="border: medium none; padding: 0in 3.4pt; background: #abacae none repeat scroll 0% 0%; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">1105</span></p>
</td>
</tr>
<tr style="height: 12.75pt;">
<td style="border: medium none; padding: 0in 3.4pt; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">1100</span></p>
</td>
<td style="border: medium none; padding: 0in 3.4pt; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><strong><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">1210</span></strong></p>
</td>
<td style="border: medium none; padding: 0in 3.4pt; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">1215</span></p>
</td>
</tr>
<tr style="height: 12.75pt;">
<td style="border: medium none; padding: 0in 3.4pt; background: #abacae none repeat scroll 0% 0%; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">1145</span></p>
</td>
<td style="border: medium none; padding: 0in 3.4pt; background: #abacae none repeat scroll 0% 0%; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><strong><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">1250</span></strong></p>
</td>
<td style="border: medium none; padding: 0in 3.4pt; background: #abacae none repeat scroll 0% 0%; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">1300</span></p>
</td>
</tr>
<tr style="height: 12.75pt;">
<td style="border: medium none; padding: 0in 3.4pt; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">1230</span></p>
</td>
<td style="border: medium none; padding: 0in 3.4pt; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><strong><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">1335</span></strong></p>
</td>
<td style="border: medium none; padding: 0in 3.4pt; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">1345</span></p>
</td>
</tr>
<tr style="height: 12.75pt;">
<td style="border: medium none; padding: 0in 3.4pt; background: #abacae none repeat scroll 0% 0%; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">1300</span></p>
</td>
<td style="border: medium none; padding: 0in 3.4pt; background: #abacae none repeat scroll 0% 0%; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><strong><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">1405</span></strong></p>
</td>
<td style="border: medium none; padding: 0in 3.4pt; background: #abacae none repeat scroll 0% 0%; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">1415</span></p>
</td>
</tr>
<tr style="height: 6pt;">
<td style="border: medium none; padding: 0in 3.4pt; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">1430</span></p>
</td>
<td style="border: medium none; padding: 0in 3.4pt; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><strong><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">1535</span></strong></p>
</td>
<td style="border: medium none; padding: 0in 3.4pt; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">1545</span></p>
</td>
</tr>
<tr style="height: 12.75pt;">
<td style="border: medium none; padding: 0in 3.4pt; background: #abacae none repeat scroll 0% 0%; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">1515</span></p>
</td>
<td style="border: medium none; padding: 0in 3.4pt; background: #abacae none repeat scroll 0% 0%; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><strong><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">1625</span></strong></p>
</td>
<td style="border: medium none; padding: 0in 3.4pt; background: #abacae none repeat scroll 0% 0%; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">1630</span></p>
</td>
</tr>
<tr style="height: 12.75pt;">
<td style="border: medium none; padding: 0in 3.4pt; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">1600</span></p>
</td>
<td style="border: medium none; padding: 0in 3.4pt; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><strong><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">1710</span></strong></p>
</td>
<td style="border: medium none; padding: 0in 3.4pt; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">1715</span></p>
</td>
</tr>
<tr style="height: 12.75pt;">
<td style="border: medium none; padding: 0in 3.4pt; background: #abacae none repeat scroll 0% 0%; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">1630</span></p>
</td>
<td style="border: medium none; padding: 0in 3.4pt; background: #abacae none repeat scroll 0% 0%; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><strong><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">1740</span></strong></p>
</td>
<td style="border: medium none; padding: 0in 3.4pt; background: #abacae none repeat scroll 0% 0%; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">1745</span></p>
</td>
</tr>
<tr style="height: 12.75pt;">
<td style="border: medium none; padding: 0in 3.4pt; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">1730</span></p>
</td>
<td style="border: medium none; padding: 0in 3.4pt; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><strong><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">1840</span></strong></p>
</td>
<td style="border: medium none; padding: 0in 3.4pt; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">1845</span></p>
</td>
</tr>
<tr style="height: 12.75pt;">
<td style="border: medium none; padding: 0in 3.4pt; background: #abacae none repeat scroll 0% 0%; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">1830</span></p>
</td>
<td style="border: medium none; padding: 0in 3.4pt; background: #abacae none repeat scroll 0% 0%; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><strong><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">1940</span></strong></p>
</td>
<td style="border: medium none; padding: 0in 3.4pt; background: #abacae none repeat scroll 0% 0%; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">1945</span></p>
</td>
</tr>
<tr style="height: 12.75pt;">
<td style="padding: 0in 3.4pt; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">1915</span></p>
</td>
<td style="padding: 0in 3.4pt; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><strong><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">2020</span></strong></p>
</td>
<td style="padding: 0in 3.4pt; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">2030</span></p>
</td>
</tr>
</tbody>
</table>
</td>
<td style="padding: 0in 3.4pt; width: 207pt;" width="176" valign="top">
<table class="MsoTableMediumList1Accent3" style="border: medium none; width: 183pt; border-collapse: collapse;" border="1" cellspacing="0" cellpadding="0" width="244">
<tbody>
<tr style="height: 27.85pt;">
<td style="padding: 0in 3.4pt; width: 61pt; height: 27.85pt;" width="61" valign="top">
<p class="MsoNormal"><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">Terminus</span></p>
<p><span class="SpellE">Kaniyapuram</span></td>
<td style="padding: 0in 3.4pt; width: 61pt; height: 27.85pt;" width="61" valign="top">
<p class="MsoNormal"><span class="SpellE"><strong><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">Technopark</span></strong></span><strong> </strong></p>
</td>
<td style="padding: 0in 3.4pt; width: 61pt; height: 27.85pt;" width="61" valign="top">
<p class="MsoNormal"><strong><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">Terminus</span></strong></p>
<p><span class="SpellE"><strong>Kovalam</strong></span><strong></strong><strong></strong></td>
</tr>
<tr style="height: 12.75pt;">
<td style="border: medium none; padding: 0in 3.4pt; background: #abacae none repeat scroll 0% 0%; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">0700</span></p>
</td>
<td style="border: medium none; padding: 0in 3.4pt; background: #abacae none repeat scroll 0% 0%; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><strong><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">0705</span></strong></p>
</td>
<td style="border: medium none; padding: 0in 3.4pt; background: #abacae none repeat scroll 0% 0%; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">0615</span></p>
</td>
</tr>
<tr style="height: 12.75pt;">
<td style="border: medium none; padding: 0in 3.4pt; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">0800</span></p>
</td>
<td style="border: medium none; padding: 0in 3.4pt; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><strong><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">0805</span></strong></p>
</td>
<td style="border: medium none; padding: 0in 3.4pt; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">0915</span></p>
</td>
</tr>
<tr style="height: 12.75pt;">
<td style="border: medium none; padding: 0in 3.4pt; background: #abacae none repeat scroll 0% 0%; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">0830</span></p>
</td>
<td style="border: medium none; padding: 0in 3.4pt; background: #abacae none repeat scroll 0% 0%; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><strong><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">0835</span></strong></p>
</td>
<td style="border: medium none; padding: 0in 3.4pt; background: #abacae none repeat scroll 0% 0%; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">0945</span></p>
</td>
</tr>
<tr style="height: 12.75pt;">
<td style="border: medium none; padding: 0in 3.4pt; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">0915</span></p>
</td>
<td style="border: medium none; padding: 0in 3.4pt; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><strong><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">0920</span></strong></p>
</td>
<td style="border: medium none; padding: 0in 3.4pt; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">1030</span></p>
</td>
</tr>
<tr style="height: 12.75pt;">
<td style="border: medium none; padding: 0in 3.4pt; background: #abacae none repeat scroll 0% 0%; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">1015</span></p>
</td>
<td style="border: medium none; padding: 0in 3.4pt; background: #abacae none repeat scroll 0% 0%; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><strong><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">1025</span></strong></p>
</td>
<td style="border: medium none; padding: 0in 3.4pt; background: #abacae none repeat scroll 0% 0%; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">1130</span></p>
</td>
</tr>
<tr style="height: 12.75pt;">
<td style="border: medium none; padding: 0in 3.4pt; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">1100</span></p>
</td>
<td style="border: medium none; padding: 0in 3.4pt; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><strong><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">1110</span></strong></p>
</td>
<td style="border: medium none; padding: 0in 3.4pt; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">1215</span></p>
</td>
</tr>
<tr style="height: 12.75pt;">
<td style="border: medium none; padding: 0in 3.4pt; background: #abacae none repeat scroll 0% 0%; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">1130</span></p>
</td>
<td style="border: medium none; padding: 0in 3.4pt; background: #abacae none repeat scroll 0% 0%; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><strong><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">1135</span></strong></p>
</td>
<td style="border: medium none; padding: 0in 3.4pt; background: #abacae none repeat scroll 0% 0%; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">1245</span></p>
</td>
</tr>
<tr style="height: 12.75pt;">
<td style="border: medium none; padding: 0in 3.4pt; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">1300</span></p>
</td>
<td style="border: medium none; padding: 0in 3.4pt; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><strong><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">1305</span></strong></p>
</td>
<td style="border: medium none; padding: 0in 3.4pt; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">1415</span></p>
</td>
</tr>
<tr style="height: 12.75pt;">
<td style="border: medium none; padding: 0in 3.4pt; background: #abacae none repeat scroll 0% 0%; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">1345</span></p>
</td>
<td style="border: medium none; padding: 0in 3.4pt; background: #abacae none repeat scroll 0% 0%; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><strong><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">1350</span></strong></p>
</td>
<td style="border: medium none; padding: 0in 3.4pt; background: #abacae none repeat scroll 0% 0%; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">1500</span></p>
</td>
</tr>
<tr style="height: 12.75pt;">
<td style="border: medium none; padding: 0in 3.4pt; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">1430</span></p>
</td>
<td style="border: medium none; padding: 0in 3.4pt; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><strong><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">1435</span></strong></p>
</td>
<td style="border: medium none; padding: 0in 3.4pt; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">1545</span></p>
</td>
</tr>
<tr style="height: 12.75pt;">
<td style="border: medium none; padding: 0in 3.4pt; background: #abacae none repeat scroll 0% 0%; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">1500</span></p>
</td>
<td style="border: medium none; padding: 0in 3.4pt; background: #abacae none repeat scroll 0% 0%; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><strong><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">1505</span></strong></p>
</td>
<td style="border: medium none; padding: 0in 3.4pt; background: #abacae none repeat scroll 0% 0%; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">1615</span></p>
</td>
</tr>
<tr style="height: 12.75pt;">
<td style="border: medium none; padding: 0in 3.4pt; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">1600</span></p>
</td>
<td style="border: medium none; padding: 0in 3.4pt; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><strong><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">1610</span></strong></p>
</td>
<td style="border: medium none; padding: 0in 3.4pt; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">1715</span></p>
</td>
</tr>
<tr style="height: 12.75pt;">
<td style="border: medium none; padding: 0in 3.4pt; background: #abacae none repeat scroll 0% 0%; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">1700</span></p>
</td>
<td style="border: medium none; padding: 0in 3.4pt; background: #abacae none repeat scroll 0% 0%; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><strong><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">1705</span></strong></p>
</td>
<td style="border: medium none; padding: 0in 3.4pt; background: #abacae none repeat scroll 0% 0%; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">1615</span></p>
</td>
</tr>
<tr style="height: 12.75pt;">
<td style="border: medium none; padding: 0in 3.4pt; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">1745</span></p>
</td>
<td style="border: medium none; padding: 0in 3.4pt; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><strong><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">1750</span></strong></p>
</td>
<td style="border: medium none; padding: 0in 3.4pt; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">1900</span></p>
</td>
</tr>
<tr style="height: 12.75pt;">
<td style="border: medium none; padding: 0in 3.4pt; background: #abacae none repeat scroll 0% 0%; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">1830</span></p>
</td>
<td style="border: medium none; padding: 0in 3.4pt; background: #abacae none repeat scroll 0% 0%; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><strong><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">1835</span></strong></p>
</td>
<td style="border: medium none; padding: 0in 3.4pt; background: #abacae none repeat scroll 0% 0%; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">1945</span></p>
</td>
</tr>
<tr style="height: 12.75pt;">
<td style="border: medium none; padding: 0in 3.4pt; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">1915</span></p>
</td>
<td style="border: medium none; padding: 0in 3.4pt; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><strong><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">1925</span></strong></p>
</td>
<td style="border: medium none; padding: 0in 3.4pt; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">2030</span></p>
</td>
</tr>
<tr style="height: 12.75pt;">
<td style="border: medium none; padding: 0in 3.4pt; background: #abacae none repeat scroll 0% 0%; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">2000</span></p>
</td>
<td style="border: medium none; padding: 0in 3.4pt; background: #abacae none repeat scroll 0% 0%; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><strong><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">2005</span></strong></p>
</td>
<td style="border: medium none; padding: 0in 3.4pt; background: #abacae none repeat scroll 0% 0%; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">2045*</span></p>
</td>
</tr>
<tr style="height: 12.75pt;">
<td style="padding: 0in 3.4pt; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">2045</span></p>
</td>
<td style="padding: 0in 3.4pt; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><strong><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">2050</span></strong></p>
</td>
<td style="padding: 0in 3.4pt; width: 61pt; height: 12.75pt;" width="61" valign="top">
<p class="MsoNormal" style="text-align: center;" align="center"><span style="font-size: 8pt; font-family: 'Arial','sans-serif'; color: black;">2130*</span></p>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td style="padding: 0in 3.4pt; width: 512.6pt;" colspan="3" width="683" valign="top">
<p class="MsoNormal" style="text-align: justify;"><strong>* indicates  <span class="SpellE">Eastfort</span>, instead of <span class="SpellE">Kovalam</span><span>. </span>Published by : <a title="Technopark Bus timings" href="http://www.technoparktoday.com" target="_blank"> www.technoparktoday.com</a></strong></p>
</td>
</tr>
</tbody>
</table>
<div id="_mcePaste" style="overflow: hidden; position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px;"><span style="font-family: times new roman; font-size: 130%;">The site says that,</span><br />
<span style="font-family: times new roman; font-size: 130%;"><br />
The following is the current schedule in this experimental phase. Due to traffic jams, rains and Trivandrum’s trademark Secretariat marches, <strong>actual timing may differ a bit, but please continue supporting KSTRC by using this service regularly, </strong>even if a bit inconvenient in the beginning. And if you can, request the staff to introduce more services during our peak hours.</span></div>
]]></content:encoded>
			<wfw:commentRss>http://feelitfresh.com/our-world/low-floor-volvo-ac-bus-schedule-from-technopark/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Detecting Browser close event using Jquery</title>
		<link>http://feelitfresh.com/web20/detecting-browser-close-event-using-jquery/</link>
		<comments>http://feelitfresh.com/web20/detecting-browser-close-event-using-jquery/#comments</comments>
		<pubDate>Sun, 13 Dec 2009 13:29:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Jquery]]></category>

		<guid isPermaLink="false">http://feelitfresh.com/?p=493</guid>
		<description><![CDATA[The JavaScript window.onbeforeload() event is fired just before the web page is unloaded. This gives us the ability to make sure that the user is certain about leaving the page that they are viewing. We can also use this to catch the browser closing event.
I have mixed  the script with Jquery. We can use [...]]]></description>
			<content:encoded><![CDATA[<p>The JavaScript window.onbeforeload() event is fired just before the web page is unloaded. This gives us the ability to make sure that the user is certain about leaving the page that they are viewing. We can also use this to catch the browser closing event.</p>
<p>I have mixed  the script with Jquery. We can use Jquery&#8217;s bind method to bind the event but using bind we can&#8217;t handle the event properly. Using the following script we can easly customize the confirmation message and also it will work on IE and most of the common  web browsers.<br />
<span id="more-493"></span></p>
<p>Actually jquery is not having any functional role in the script but  using the following script we can avoid inline scripting and our code will look nice.</p>
<div class="kod">

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">$<span style="color: #009900;">&#40;</span>window<span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span>load<span style="color: #009900;">&#40;</span><span style="color: #000000; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	window<span style="color: #339933;">.</span>onbeforeunload <span style="color: #339933;">=</span> navigateAway<span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">function</span> navigateAway<span style="color: #009900;">&#40;</span>e<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">var</span> message <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;Your confirmation message goes here.&quot;</span><span style="color: #339933;">,</span>
	e <span style="color: #339933;">=</span> e <span style="color: #339933;">||</span> window<span style="color: #339933;">.</span>event<span style="color: #339933;">;</span>
	<span style="color: #666666; font-style: italic;">// For IE and Firefox</span>
	<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span>e<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
		e<span style="color: #339933;">.</span>returnValue <span style="color: #339933;">=</span> message<span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span>
	<span style="color: #666666; font-style: italic;">// For Safari</span>
	<span style="color: #b1b100;">return</span> message<span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

</div>
<h3>Related Links</h3>
<ul>
<li> <a href="http://bytes.com/topic/javascript/insights/825556-using-onbeforeunload-javascript-event">Using the OnBeforeUnload JavaScript Event</a></li>
<li> <a href="http://jquery-howto.blogspot.com/2009/01/working-with-jquery-13-new-event-object.html">Working with jQuery new Event object</a></li>
<li> <a href="http://www.learningjquery.com/2008/03/working-with-events-part-1">Working with jQuery Events</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://feelitfresh.com/web20/detecting-browser-close-event-using-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Surprising Rock in Saudi Arabia &#8211; Real pictures</title>
		<link>http://feelitfresh.com/religion/surprising-rock-in-saudi-arabia-real-pictures/</link>
		<comments>http://feelitfresh.com/religion/surprising-rock-in-saudi-arabia-real-pictures/#comments</comments>
		<pubDate>Tue, 08 Dec 2009 16:21:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Religion]]></category>
		<category><![CDATA[feelit]]></category>

		<guid isPermaLink="false">http://feelitfresh.com/?p=479</guid>
		<description><![CDATA[When I read it I understood  that it must be a fake picture and fake information. so I started to search on the google but I didn't get any real pictures of the rock. But found one Haleem Qureshi Civil Engineer from Saudi Arabia knows the real fact and has the real pictures of the rock. He sent me the  real pictures and shared the real story of the Surprising Rock in Saudi Arabia ]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">I have got a mail some days before with title &#8220;Surprising Rock in Saudi Arabia&#8221; and having the following message in it<br />
&#8220;<em>A huge rock in a village of Al-Hassa region, SAUDI ARABIA raises 11 cms from the ground level once in a year during the month of April and stays elevated for about 30 minutes !!!</em></p>
<p><em><a class="lightbox" href="http://feelitfresh.com/wp-content/uploads/2009/12/surprizing_rock_saudi_Funzug.org_01.jpg"><img class="size-full wp-image-481 alignleft" title="surprizing_rock_saudi_Funzug.org_01" src="http://feelitfresh.com/wp-content/uploads/2009/12/surprizing_rock_saudi_Funzug.org_01.jpg" alt="surprizing_rock_saudi_Funzug.org_01" width="252" height="201" /></a>They say that 17 years ago, one man was shot dead behind this rock as he was hidden there. This encounter happened in the month of April 1989. You can see the fresh blood stains on the rock. Most surprisingly, when the rock raises from the ground, these stains become darker, fresher and wet. Local residents tried to wipe off the stains several times, but after some time it appears again on the rock automatically. &#8230;. Isn&#8217;t it astounding?  &#8220;</em></p>
<p><em> </em></p>
<p>When I read it I understood  that it must be a fake picture and fake information so I started to search on google but I didn&#8217;t get any real pictures of the rock. But found one Haleem Qureshi Civil Engineer from Saudi Arabia knows the real fact and has the real pictures of the rock. He sent me the  real pictures and shared the real story of the Surprising Rock in Saudi Arabia with me <span id="more-479"></span></p>
<p style="text-align: left;"><strong>The following are two fake pictures of rock. </strong></p>
<p style="text-align: center;"><a class="lightbox" href="http://feelitfresh.com/wp-content/uploads/2009/12/Surprising_Rock.jpg"><img class="alignleft size-full wp-image-487" title="Surprising_Rock" src="http://feelitfresh.com/wp-content/uploads/2009/12/Surprising_Rock.jpg" alt="Surprising_Rock" width="239" height="168" /></a><a class="lightbox" href="http://feelitfresh.com/wp-content/uploads/2009/12/Surprising_Rock2.jpg"><img class="size-full wp-image-488 aligncenter" title="Surprising_Rock2" src="http://feelitfresh.com/wp-content/uploads/2009/12/Surprising_Rock2.jpg" alt="Surprising_Rock2" width="217" height="168" /></a></p>
<p style="text-align: left;">But we can see the original Pictures of rock present at Al-Hassa ,City located at east west of Riyadh.</p>
<p><a class="lightbox" href="http://feelitfresh.com/wp-content/uploads/2009/12/Real_Surprising_Rock.jpg"><img class="size-full wp-image-485 aligncenter" title="Real_Surprising_Rock" src="http://feelitfresh.com/wp-content/uploads/2009/12/Real_Surprising_Rock.jpg" alt="Real_Surprising_Rock" width="450" height="317" /></a></p>
<p style="text-align: left;">Another close picture of the Surprising Rock  from different angle and the supports are eliminated by photoshop.</p>
<p><a class="lightbox" href="http://feelitfresh.com/wp-content/uploads/2009/12/Real_Surprising_Rock2.jpg"><img class="size-full wp-image-486 aligncenter" title="Real_Surprising_Rock2" src="http://feelitfresh.com/wp-content/uploads/2009/12/Real_Surprising_Rock2.jpg" alt="Real_Surprising_Rock2" width="450" height="301" /></a></p>
<p style="text-align: left;">Following is the same rock but has changed with different style with Photoshop. The Photoshop expert has put  sheep under the rock and rock has risen from one side.</p>
<p><a class="lightbox" href="http://feelitfresh.com/wp-content/uploads/2009/12/fake_Surprising_Rock.jpg"><img class="aligncenter size-full wp-image-484" title="fake_Surprising_Rock" src="http://feelitfresh.com/wp-content/uploads/2009/12/fake_Surprising_Rock.jpg" alt="fake_Surprising_Rock" width="450" height="311" /></a></p>
<p style="text-align: left;">There are many rocks available in Saudi Arabia having with little support. The surrounded area under the rocks has vanished through heavy sand storms &amp; only small supports have remained.   See the example below.</p>
<p><a class="lightbox" href="http://feelitfresh.com/wp-content/uploads/2009/12/another_Surprising_Rock2.jpg"><img class="aligncenter size-full wp-image-483" title="another_Surprising_Rock2" src="http://feelitfresh.com/wp-content/uploads/2009/12/another_Surprising_Rock2.jpg" alt="another_Surprising_Rock2" width="450" height="311" /></a></p>
<p><a class="lightbox" href="http://feelitfresh.com/wp-content/uploads/2009/12/another_Surprising_Rock1.jpg"><img class="aligncenter size-full wp-image-482" title="another_Surprising_Rock1" src="http://feelitfresh.com/wp-content/uploads/2009/12/another_Surprising_Rock1.jpg" alt="another_Surprising_Rock1" width="450" height="313" /></a></p>
<p>The conclusion of whole attached detail is,there are many rocks available in that region but all rocks have little support under the rocks .These rocks are not hanging.But it can slipped any time when the small pointed support will be removed by heavy <span><span><span><span><span style="border-bottom: medium none; background: transparent none repeat scroll 0% 0%;"><span style="border-bottom: medium none; background: transparent none repeat scroll 0% 0%;"><span>desert sand</span></span></span></span></span></span></span> storm.Local authorities have already made plan to move these rocks at suitable place to avoid any accident due to slipping of these rocks.</p>
<div>Someone take a picture from one of that rock &amp; erase the pointed supports through Photoshop &amp; advertised on websites.</div>
]]></content:encoded>
			<wfw:commentRss>http://feelitfresh.com/religion/surprising-rock-in-saudi-arabia-real-pictures/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>New Low Floor Volvo AC buses have started to rule the Trivandrum City</title>
		<link>http://feelitfresh.com/our-world/new-low-floor-volvo-ac-buses-have-started-to-rule-the-trivandrum-city/</link>
		<comments>http://feelitfresh.com/our-world/new-low-floor-volvo-ac-buses-have-started-to-rule-the-trivandrum-city/#comments</comments>
		<pubDate>Tue, 24 Nov 2009 06:03:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Our World]]></category>
		<category><![CDATA[Trivandrum]]></category>

		<guid isPermaLink="false">http://feelitfresh.com/?p=458</guid>
		<description><![CDATA[The new  eight low floor air conditioned Volvo buses  flagged off  by State Chief Minister V.S. Achuthanandan  on Wednesday 18 November 2009 have started to rule Thiruvananthapuram city roads.Currently, there are 17 trips daily to EastFort, starting from Kaniyapuram at 0700, 0800, 0830, 0915, 1015, 1100, 1130, 1300, 1345, 1430, 1500, [...]]]></description>
			<content:encoded><![CDATA[<p>The new  eight low floor air conditioned Volvo buses  flagged off  by State Chief Minister V.S. Achuthanandan  on Wednesday 18 November 2009 have started to rule Thiruvananthapuram city roads.Currently, there are 17 trips daily to EastFort, starting from Kaniyapuram at 0700, 0800, 0830, 0915, 1015, 1100, 1130, 1300, 1345, 1430, 1500, 1600, 1700, 1745, 1830, 1915, 2045.</p>
<p>After the flagging-off ceremony, the Chief Minister, Union Minister of State for External Affairs Shashi Tharoor, several Ministers and legislators and officials of the Kerala State Road Transport Corporation (KSRTC) boarded an orange-red Volvo bus for a ride from the Central Stadium. As the bus was overcrowded, the Chief Minster and some others alighted at the gate.<span id="more-458"></span><br />

<a href='http://feelitfresh.com/our-world/new-low-floor-volvo-ac-buses-have-started-to-rule-the-trivandrum-city/attachment/b11/' title='b11'><img width="150" height="150" src="http://feelitfresh.com/wp-content/uploads/2009/11/b11-150x150.jpg" class="attachment-thumbnail" alt="" title="b11" /></a>
<a href='http://feelitfresh.com/our-world/new-low-floor-volvo-ac-buses-have-started-to-rule-the-trivandrum-city/attachment/b10/' title='b10'><img width="150" height="150" src="http://feelitfresh.com/wp-content/uploads/2009/11/b10-150x150.jpg" class="attachment-thumbnail" alt="" title="b10" /></a>
<a href='http://feelitfresh.com/our-world/new-low-floor-volvo-ac-buses-have-started-to-rule-the-trivandrum-city/attachment/b9/' title='b9'><img width="150" height="150" src="http://feelitfresh.com/wp-content/uploads/2009/11/b9-150x150.jpg" class="attachment-thumbnail" alt="" title="b9" /></a>
<a href='http://feelitfresh.com/our-world/new-low-floor-volvo-ac-buses-have-started-to-rule-the-trivandrum-city/attachment/b8/' title='b8'><img width="150" height="150" src="http://feelitfresh.com/wp-content/uploads/2009/11/b8-150x150.jpg" class="attachment-thumbnail" alt="" title="b8" /></a>
<a href='http://feelitfresh.com/our-world/new-low-floor-volvo-ac-buses-have-started-to-rule-the-trivandrum-city/attachment/b7/' title='b7'><img width="150" height="150" src="http://feelitfresh.com/wp-content/uploads/2009/11/b7-150x150.jpg" class="attachment-thumbnail" alt="" title="b7" /></a>
<a href='http://feelitfresh.com/our-world/new-low-floor-volvo-ac-buses-have-started-to-rule-the-trivandrum-city/attachment/b6/' title='b6'><img width="150" height="150" src="http://feelitfresh.com/wp-content/uploads/2009/11/b6-150x150.jpg" class="attachment-thumbnail" alt="" title="b6" /></a>
<a href='http://feelitfresh.com/our-world/new-low-floor-volvo-ac-buses-have-started-to-rule-the-trivandrum-city/attachment/b5/' title='b5'><img width="150" height="150" src="http://feelitfresh.com/wp-content/uploads/2009/11/b5-150x150.jpg" class="attachment-thumbnail" alt="" title="b5" /></a>
<a href='http://feelitfresh.com/our-world/new-low-floor-volvo-ac-buses-have-started-to-rule-the-trivandrum-city/attachment/b4/' title='b4'><img width="150" height="150" src="http://feelitfresh.com/wp-content/uploads/2009/11/b4-150x150.jpg" class="attachment-thumbnail" alt="" title="b4" /></a>
<a href='http://feelitfresh.com/our-world/new-low-floor-volvo-ac-buses-have-started-to-rule-the-trivandrum-city/attachment/b3/' title='b3'><img width="150" height="150" src="http://feelitfresh.com/wp-content/uploads/2009/11/b3-150x150.jpg" class="attachment-thumbnail" alt="" title="b3" /></a>
<a href='http://feelitfresh.com/our-world/new-low-floor-volvo-ac-buses-have-started-to-rule-the-trivandrum-city/attachment/b2/' title='b2'><img width="150" height="150" src="http://feelitfresh.com/wp-content/uploads/2009/11/b2-150x150.jpg" class="attachment-thumbnail" alt="" title="b2" /></a>
<a href='http://feelitfresh.com/our-world/new-low-floor-volvo-ac-buses-have-started-to-rule-the-trivandrum-city/attachment/b1/' title='b1'><img width="150" height="150" src="http://feelitfresh.com/wp-content/uploads/2009/11/b1-150x150.jpg" class="attachment-thumbnail" alt="" title="b1" /></a>
<br />
The KSRTC, which is executing the purchase and maintenance part of the city bus service proposed under the Jawaharlal Nehru National Urban Renewable Mission (JNNURM), has given the purchase order for 30 low floor A/C buses and 120 semi-low floor non-A/C buses for Thiruvananthapuram.</p>
<h3>Related Links</h3>
<ul>
<li><a href="http://www.technoparktoday.com/2009/11/techies-says-use-the-bus/">Techies say &#8211; Use the Bus!</a></li>
<li><a href="http://www.technoparktoday.com/2009/11/technopark-volvo-full-schedule/">Technopark Volvo &#8211; full schedule</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://feelitfresh.com/our-world/new-low-floor-volvo-ac-buses-have-started-to-rule-the-trivandrum-city/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google is not indexing new Wordpress posts Solved the Issue</title>
		<link>http://feelitfresh.com/blogging/google-is-not-indexing-new-wordpress-posts-solved-the-issue/</link>
		<comments>http://feelitfresh.com/blogging/google-is-not-indexing-new-wordpress-posts-solved-the-issue/#comments</comments>
		<pubDate>Tue, 27 Oct 2009 15:40:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://feelitfresh.com/?p=436</guid>
		<description><![CDATA[I had an issue with my wordpress blog with the google indexing after posted an article . When I first started my blog my posts where getting index within minutes. But last week  none of my posts ware getting indexed.
I looked at my google webmaster tools and at the starting of the month I had [...]]]></description>
			<content:encoded><![CDATA[<p>I had an issue with my wordpress blog with the google indexing after posted an article . When I first started my blog my posts where getting index within minutes. But last week  none of my posts ware getting indexed.</p>
<p>I looked at my google webmaster tools and at the starting of the month I had a number  of pages that were getting crawled. Now it&#8217;s way down. someday I didn&#8217;t even get a bot on my site. I had changed nothing. At last I checked my robots.txt file. It was changed to<br />
<span id="more-436"></span></p>
<p>User-agent: *<br />
Disallow: /</p>
<p>I didn&#8217;t have any idea on this changed automatically!!.  I edited this into</p>
<p>User-agent: *<br />
Allow: /</p>
<p>And checked the google after a new article posted. Now the issue is fixed and the google is indexing my posts successfully.</p>
]]></content:encoded>
			<wfw:commentRss>http://feelitfresh.com/blogging/google-is-not-indexing-new-wordpress-posts-solved-the-issue/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Add lightbox to Wordpress blogs without using a plugin</title>
		<link>http://feelitfresh.com/web20/add-lightbox-to-wordpress-blogs-without-using-a-plugin/</link>
		<comments>http://feelitfresh.com/web20/add-lightbox-to-wordpress-blogs-without-using-a-plugin/#comments</comments>
		<pubDate>Tue, 27 Oct 2009 14:08:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[Jquery]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://feelitfresh.com/?p=374</guid>
		<description><![CDATA[There are a lot of plugins available for adding lightbox support to wordpress blogs. But I am trying to add the lightbox script directly to my blog here. I have followed the below steps to add the plugin to my wordpress blog
Step 1 : Download jquery lightbox plugin
Step 2 : Copy jquery.lightbox-0.x.js, jquery.js, jquery.lightbox-0.x.css from [...]]]></description>
			<content:encoded><![CDATA[<p>There are a lot of plugins available for adding lightbox support to wordpress blogs. But I am trying to add the lightbox script directly to my blog here. I have followed the below steps to add the plugin to my wordpress blog<br />
<strong>Step 1</strong> : Download <a href="http://leandrovieira.com/projects/jquery/lightbox/" target="_blank">jquery lightbox plugin</a><br />
<strong>Step 2</strong> : Copy jquery.lightbox-0.x.js, jquery.js, jquery.lightbox-0.x.css from the downloaded plugin pack to a separate a folder and name it to  lightbox. Dont add Jquery if u are already using the jquery in your site.<br />
<strong>Step 3</strong> : Upload all the Images to your theme&#8217;s image folder<br />
<strong>Step 4</strong> : Open jquery.lightbox-0.x.js edit the image variables  to the path of your uploaded images</p>
<div class="kod">

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">imageLoading<span style="color: #339933;">:</span> <span style="color: #0000ff;">'http://feelitfresh.com/wp-content/themes/feelitfresh/images/lightbox-ico-loading.gif'</span><span style="color: #339933;">,</span>
imageBtnPrev<span style="color: #339933;">:</span> <span style="color: #0000ff;">'http://feelitfresh.com/wp-content/themes/feelitfresh/images/lightbox-btn-prev.gif'</span><span style="color: #339933;">,</span>
imageBtnNext<span style="color: #339933;">:</span> <span style="color: #0000ff;">'http://feelitfresh.com/wp-content/themes/feelitfresh/images/lightbox-btn-next.gif'</span><span style="color: #339933;">,</span>
imageBtnClose<span style="color: #339933;">:</span> <span style="color: #0000ff;">'http://feelitfresh.com/wp-content/themes/feelitfresh/images/lightbox-btn-close.gif'</span><span style="color: #339933;">,</span>
imageBlank<span style="color: #339933;">:</span> <span style="color: #0000ff;">'http://feelitfresh.com/wp-content/themes/feelitfresh/images//lightbox-blank.gif'</span></pre></div></div>

</div>
<p><strong>Step 5</strong> : Upload the lightbox directory to your wordpress theme folder. Better to inside the javascript directory /wp-content/themes/feelitfresh/javascript 6)Add the  following lines to your script.js file or to header tag or any of the javascript include file</p>
<div class="kod">

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;"> $<span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span> $<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'a.lightbox'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">lightBox</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

</div>
<p><span id="more-374"></span><br />
<strong>Step 6</strong> : Open your theme folder in Appearance &gt;Editor  and edit header.php and add the following lines inside the head tag</p>
<div class="kod">&lt;script type=&#8221;text/javascript&#8221; src=&#8221;&lt;?php bloginfo(&#8217;template_url&#8217;); ?&gt;/javascript/lightbox/jquery.lightbox.js&#8221;&gt; &lt;/script&gt;<br />
&lt;link rel=&#8221;stylesheet&#8221; type=&#8221;text/css&#8221; href=&#8221;&lt;?php bloginfo(&#8217;template_url&#8217;); ?&gt;/javascript/lightbox/jquery.lightbox.css&#8221; media=&#8221;screen&#8221; /&gt;</div>
<p><strong>Step 7</strong> : Add the class &#8220;lightbox&#8221; to the link  of the image. While inserting the image  you can click on the &#8220;File URL&#8221; button first to link the image to the image file</p>
<p><a class="lightbox" href="http://feelitfresh.com/wp-content/uploads/2009/10/lighbox1.png"><img class="size-full wp-image-429 alignnone" title="lighbox1" src="http://feelitfresh.com/wp-content/uploads/2009/10/lighbox1.png" alt="lighbox1" width="411" height="185" /></a></p>
<p><strong>Step 8</strong> : Then click on the image and edit the image settings  and select the the Advanced settings. Then change the &#8220;<label for="link_classes"> <span>CSS Class&#8221;</span> </label>to &#8220;lightbox&#8221; as below</p>
<p><a class="lightbox" href="http://feelitfresh.com/wp-content/uploads/2009/10/lightbox.png"><img class="size-full wp-image-430 alignnone" title="lightbox" src="http://feelitfresh.com/wp-content/uploads/2009/10/lightbox.png" alt="lightbox2" width="411" height="253" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://feelitfresh.com/web20/add-lightbox-to-wordpress-blogs-without-using-a-plugin/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
