<?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>Rockstar template &#187; featured</title>
	<atom:link href="http://rockstartemplate.com/category/featured/feed/" rel="self" type="application/rss+xml" />
	<link>http://rockstartemplate.com</link>
	<description>Library Of Templates</description>
	<lastBuildDate>Sun, 13 May 2012 02:32:55 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Merry Christmas!</title>
		<link>http://rockstartemplate.com/misc/merry-christmas/</link>
		<comments>http://rockstartemplate.com/misc/merry-christmas/#comments</comments>
		<pubDate>Sat, 24 Dec 2011 13:20:48 +0000</pubDate>
		<dc:creator>mxd106220</dc:creator>
				<category><![CDATA[featured]]></category>
		<category><![CDATA[Misc]]></category>
		<category><![CDATA[Christmas]]></category>

		<guid isPermaLink="false">http://rockstartemplate.com/?p=1294</guid>
		<description><![CDATA[Hi Folks, On behalf of Rockstartemplate.com, we wish you a Merry Christmas and a Happy New Year!]]></description>
			<content:encoded><![CDATA[<p>Hi Folks,</p>
<p>On behalf of Rockstartemplate.com, we wish you a Merry Christmas and a Happy New Year!</p>
<p><a href="http://rockstartemplate.com/misc/merry-christmas/attachment/merry_christmas/" rel="attachment wp-att-1295"><img class="aligncenter size-full wp-image-1295" title="merry_christmas" src="http://rockstartemplate.com/wp-content/uploads/2011/12/merry_christmas.jpg" alt="merry christmas Merry Christmas!" width="750" height="562" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://rockstartemplate.com/misc/merry-christmas/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS3 Stylish Search Box with Folded Corner Effect</title>
		<link>http://rockstartemplate.com/featured/stylish-searchbox-foldedeffect/</link>
		<comments>http://rockstartemplate.com/featured/stylish-searchbox-foldedeffect/#comments</comments>
		<pubDate>Thu, 10 Nov 2011 08:23:22 +0000</pubDate>
		<dc:creator>Rockstar</dc:creator>
				<category><![CDATA[Css]]></category>
		<category><![CDATA[featured]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[box]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[search]]></category>

		<guid isPermaLink="false">http://rockstartemplate.com/?p=1115</guid>
		<description><![CDATA[This tutorial shows you how to create a Folded corner effect without images. Just like the one mentioned below.., The below sample is a simple search box without a folded corner. Our tutorial shows you how to make this search box with folded effect. Step 1] Create a simple Search Box with Gradient and shadow [...]]]></description>
			<content:encoded><![CDATA[<p>This tutorial shows you how to create a Folded corner effect without images. Just like the one mentioned below..,</p>
<p>The below sample is a simple search box without a folded corner. Our tutorial shows you how to make this search box with folded effect.</p>
<div style="text-align: center;"><a href="http://rockstartemplate.com/featured/stylish-searchbox-foldedeffect/attachment/searchbox_design/" rel="attachment wp-att-1267"><img class="aligncenter size-full wp-image-1267" title="searchbox_design" src="http://rockstartemplate.com/wp-content/uploads/2011/11/searchbox_design.jpg" alt="searchbox design CSS3 Stylish Search Box with Folded Corner Effect" width="404" height="86" /></a></div>
<p>Step 1] Create a simple Search Box with Gradient and shadow effect.</p>
<div class="fvch-code">
<pre class="fvch-line-numbers">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
26
27
28
29
30
31
32
33
</pre>
<pre>.searchbox {
position:relative;
width:400px;
margin:0px auto;
color:#f2f2f2;
background:#97C02F;
overflow:hidden;
border: solid 0px #d2d2d2;
padding:1em 1.5em;
-webkit-box-shadow: 0 1px 0px rgba(0,0,0,.1);
-moz-box-shadow: 0 1px 0px rgba(0,0,0,.1);
box-shadow: 0 1px 0px rgba(0,0,0,.1);
background: -webkit-gradient(linear, left top, left bottom, from(#C7FD3F), to(#638903));
background: -moz-linear-gradient(top,  #C7FD3F,  #638903);
filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr=&#039;#C7FD3F&#039;, endColorstr=&#039;#638903&#039;);
-ms-filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr=&#039;#C7FD3F&#039;, endColorstr=&#039;#638903&#039;);
}</pre>
</div>
<p>Here i have used a simple gradient effect with Css3. This effect is compatible with all the browsers. Make this div position relative, such that we can place our corner effect. You can modify the color of the gradient by modifying the start and end color string.</p>
<p>Step 2] Add the folded corner effect into the above div element.</p>
<div class="fvch-code">
<pre class="fvch-line-numbers">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
</pre>
<pre>.searchbox:before {
content:&quot;&quot;;
position:absolute;
top:0;right:0;
border-width:0 16px 16px 0;
border-style:solid;
border-color:#fff #fff #658E15 #658E15;
background:#638903;
-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.3), -1px 1px 1px rgba(0,0,0,0.2);
-moz-box-shadow:0 1px 1px rgba(0,0,0,0.3), -1px 1px 1px rgba(0,0,0,0.2);
box-shadow:0 1px 1px rgba(0,0,0,0.3), -1px 1px 1px rgba(0,0,0,0.2);
display:block; width:0;
}</pre>
</div>
<p>This is the best part. We make the Top and Right position to &#8217;0&#8242; and position to be absolute. You can also change the corner of your box by changing the values to bottom:0; and left:0; </p>
<p>If you want to slope the shape the other way modify the border-width:0 16px 16px 0; to border-width:16px 16px 0 0; By doing this we can change the slope of the folded corner.</p>
<p>Now our final search box looks like,</p>
<div style="text-align: center;"><a href="http://rockstartemplate.com/featured/stylish-searchbox-foldedeffect/attachment/stylish_search_box/" rel="attachment wp-att-1270"><img class="aligncenter size-full wp-image-1270" title="stylish_search_box" src="http://rockstartemplate.com/wp-content/uploads/2011/11/stylish_search_box.jpg" alt="stylish search box CSS3 Stylish Search Box with Folded Corner Effect" width="617" height="106" /></a></div>
<div style="text-align: center;"><a title="Searchbox Demo" href="http://rockstartemplate.com/featured/stylish-searchbox-foldedeffect/attachment/demo/" rel="attachment wp-att-1271" target="_blank"><img class="aligncenter size-full wp-image-1271" title="demo" src="http://rockstartemplate.com/wp-content/uploads/2011/11/demo.jpg" alt="demo CSS3 Stylish Search Box with Folded Corner Effect" width="138" height="59" /></a></div>
<p>Check out the demo and create your own stylish buttons.</p>
<p>To know more bout CSS3, <a title="Css 3 Tutorial" href="http://rockstartemplate.com/category/tutorial/css-tutorials/" target="_blank">Click here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://rockstartemplate.com/featured/stylish-searchbox-foldedeffect/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Magic Blue WordPress Theme</title>
		<link>http://rockstartemplate.com/featured/magic-blue-wordpress-theme/</link>
		<comments>http://rockstartemplate.com/featured/magic-blue-wordpress-theme/#comments</comments>
		<pubDate>Thu, 23 Jun 2011 14:55:10 +0000</pubDate>
		<dc:creator>Rockstar</dc:creator>
				<category><![CDATA[featured]]></category>
		<category><![CDATA[Wordpress Themes]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[magic blue]]></category>
		<category><![CDATA[template]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://rockstartemplate.com/?p=1234</guid>
		<description><![CDATA[We released a free WordPress template called “Magic Blue.”  This theme supports widget, threaded-comments and search engine friendly pages. Also including page-navigation, advertising box, widgetized sidebar and a good looking search box. This template is very well designed and has a dark blue header and a dark blue body. This theme is ideal for photographers [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">We released a free WordPress template called “Magic Blue.”  This theme supports widget, threaded-comments and search engine friendly pages. Also including page-navigation, advertising box, widgetized sidebar and a good looking search box. This template is very well designed and has a dark blue header and a dark blue body.</p>
<p style="text-align: justify;">This theme is ideal for photographers and designers who wants to showcase their pictures/photos. You can upload and select your post thumbnails, all from the backend of WordPress. All you need to do is to add an thumbnail to your post custom fields with field name &#8220;postimage&#8221;. Doing so you will get a nice<br />
You can use the templates for your personal website. Use them on your blog, modify them however you like.</p>
<p><span style="color: #339966;"><strong>Features of this Theme :</strong></span></p>
<ul>
<li>SEO friendly</li>
<li>100% Widget support</li>
<li>Premium Like WordPress Template.</li>
<li>Ad Optimised for 125 adspot.</li>
<li>CSS 3 and HTML 5 support.</li>
<li>Easy Editable Code.</li>
<li>Stylish Search box</li>
</ul>
<p><span style="color: #339966;"><strong>Screenshot :</strong></span></p>
<p><a rel="attachment wp-att-1235" href="http://rockstartemplate.com/featured/magic-blue-wordpress-theme/attachment/magic_blue_wordpress_theme/"><img class="aligncenter size-full wp-image-1235" title="magic_blue_wordpress_theme" src="http://rockstartemplate.com/wp-content/uploads/2011/06/magic_blue_wordpress_theme.jpg" alt="magic blue wordpress theme Magic Blue Wordpress Theme" width="625" height="450" /></a></p>
<p>&nbsp;</p>
<p style="text-align: center;"><a title="Preview the Template" href="http://rockstartemplate.com/demo/?wptheme=Magic+Blue" target="_blank">Preview this Template</a> | <a href="http://rockstartemplate.com/magicblue/magic_blue.zip" target="_blank">Download This Template</a></p>
<p>&nbsp;</p>
<p>We would like to hear from you about this template , and If you like this post subscribe to our Feed .</p>
]]></content:encoded>
			<wfw:commentRss>http://rockstartemplate.com/featured/magic-blue-wordpress-theme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Change your Skin Tone in Photoshop</title>
		<link>http://rockstartemplate.com/tutorial/photoshop/change-skin-tone-photoshop/</link>
		<comments>http://rockstartemplate.com/tutorial/photoshop/change-skin-tone-photoshop/#comments</comments>
		<pubDate>Sun, 20 Mar 2011 12:21:51 +0000</pubDate>
		<dc:creator>Rockstar</dc:creator>
				<category><![CDATA[featured]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[skin tone]]></category>

		<guid isPermaLink="false">http://rockstartemplate.com/?p=1164</guid>
		<description><![CDATA[Why does your face look pale in the photograph you have taken ? Why does your tone fade in the pictures ? There may be several reasons behind this. This post might be helpful for a person, Who is looking for the ways to increase the tone of their skin in the pictures ( to [...]]]></description>
			<content:encoded><![CDATA[<p>Why does your face look pale in the photograph you have taken ? Why does your tone fade in the pictures ? There may be several reasons behind this.</p>
<p>This post might be helpful for a person,<br />
Who is looking for the ways to increase the tone of their skin in the pictures ( to create a display picture for Facebook/Orkut etc.,)</p>
<h2 style="text-align: center;"><strong>{Or}</strong></h2>
<p>Who finds their tone decreases in the picture and wants to maintain their tone in the picture too.</p>
<h2 style="text-align: center;"><strong>{Or}</strong></h2>
<p>Who wants to match their tones with the person near them.<br />
This Paleness might be because of the general hue. May be due to your camera&#8217;s flash, which is really bright or really low. It also depends on what makeup you are using.You can switch off your flash, but the picture will become a bit blurry however you will not look pale.</p>
<p>In Photoshop, we have an option to change the tone of the body. Open your picture in Photoshop.</p>
<p>Unlock your picture. Click Open -&gt; Adjustment -&gt; Hue/Saturation.</p>
<p>Change the setting like the below Screen shot,</p>
<p><a rel="attachment wp-att-1176" href="http://rockstartemplate.com/tutorial/photoshop/change-skin-tone-photoshop/attachment/screen-shot-2011-03-20-at-7-06-54-am/"><img class="size-full wp-image-1176 aligncenter" title="hue_saturation_settings" src="http://rockstartemplate.com/wp-content/uploads/2011/03/Screen-shot-2011-03-20-at-7.06.54-AM.png" alt="Screen shot 2011 03 20 at 7.06.54 AM Change your Skin Tone in Photoshop" width="490" height="410" /></a></p>
<p style="text-align: center;">(The Hue value can be from -4 to -6 and saturation can be from +13 to +17)</p>
<p>See the original picture in the left side and the toned image on the right side,</p>
<p><a rel="attachment wp-att-1173" href="http://rockstartemplate.com/tutorial/photoshop/change-skin-tone-photoshop/attachment/skin_tone_increase/"><img class="aligncenter size-full wp-image-1173" title="skin_tone_increase" src="http://rockstartemplate.com/wp-content/uploads/2011/03/skin_tone_increase.jpg" alt="skin tone increase Change your Skin Tone in Photoshop" width="648" height="308" /></a>.</p>
<p>For more Photoshop Tutorial, <a href="http://rockstartemplate.com/category/tutorial/photoshop">Click Here !!</a></p>
]]></content:encoded>
			<wfw:commentRss>http://rockstartemplate.com/tutorial/photoshop/change-skin-tone-photoshop/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Desktop Wallpapers for Christmas</title>
		<link>http://rockstartemplate.com/photography/wallpapers/christmas-wallpapers/</link>
		<comments>http://rockstartemplate.com/photography/wallpapers/christmas-wallpapers/#comments</comments>
		<pubDate>Sat, 18 Dec 2010 17:55:39 +0000</pubDate>
		<dc:creator>Rockstar</dc:creator>
				<category><![CDATA[featured]]></category>
		<category><![CDATA[Photography]]></category>
		<category><![CDATA[Wallpapers]]></category>
		<category><![CDATA[Christmas]]></category>

		<guid isPermaLink="false">http://rockstartemplate.com/?p=1106</guid>
		<description><![CDATA[It&#8217;s Christmas time Folks ..! Check out some of the cool wallpapers to decorate your Desktop. Wishing You, Happiness, This Christmas ! Find the desktop wallpapers below. Click on the Picture to enlarge.]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">It&#8217;s Christmas time Folks ..! Check out some of the cool wallpapers to decorate your Desktop. Wishing You, Happiness, This Christmas !</p>
<p style="text-align: justify;">Find the desktop wallpapers below. Click on the Picture to enlarge.</p>
<p style="text-align: justify;">
<div class="ngg-galleryoverview" id="ngg-gallery-42-1106">


	
	<!-- Thumbnails -->
		
	<div id="ngg-image-631" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/wp-content/gallery/christmas/Christmas Wallpaper.jpg" title=" " class="shutterset_set_42" >
								<img title="Christmas Wallpaper" alt="thumbs Christmas Wallpaper Desktop Wallpapers for Christmas" src="http://rockstartemplate.com/wp-content/gallery/christmas/thumbs/thumbs_Christmas Wallpaper.jpg" width="525" height="384" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-632" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/wp-content/gallery/christmas/Christmas-gifts.jpg" title=" " class="shutterset_set_42" >
								<img title="Christmas-gifts" alt="thumbs Christmas gifts Desktop Wallpapers for Christmas" src="http://rockstartemplate.com/wp-content/gallery/christmas/thumbs/thumbs_Christmas-gifts.jpg" width="525" height="328" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-633" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/wp-content/gallery/christmas/Christmas_Wallpapers.jpg" title=" " class="shutterset_set_42" >
								<img title="Christmas_Wallpapers" alt="thumbs Christmas Wallpapers Desktop Wallpapers for Christmas" src="http://rockstartemplate.com/wp-content/gallery/christmas/thumbs/thumbs_Christmas_Wallpapers.jpg" width="525" height="394" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-634" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/wp-content/gallery/christmas/Christmas_gift.jpg" title=" " class="shutterset_set_42" >
								<img title="Christmas_gift" alt="thumbs Christmas gift Desktop Wallpapers for Christmas" src="http://rockstartemplate.com/wp-content/gallery/christmas/thumbs/thumbs_Christmas_gift.jpg" width="525" height="394" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-635" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/wp-content/gallery/christmas/Merry_christmas_picture_wallpapers.jpg" title=" " class="shutterset_set_42" >
								<img title="Merry_christmas_picture_wallpapers" alt="thumbs Merry christmas picture wallpapers Desktop Wallpapers for Christmas" src="http://rockstartemplate.com/wp-content/gallery/christmas/thumbs/thumbs_Merry_christmas_picture_wallpapers.jpg" width="525" height="420" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-636" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/wp-content/gallery/christmas/beautiful-christmas.jpg" title=" " class="shutterset_set_42" >
								<img title="beautiful-christmas" alt="thumbs beautiful christmas Desktop Wallpapers for Christmas" src="http://rockstartemplate.com/wp-content/gallery/christmas/thumbs/thumbs_beautiful-christmas.jpg" width="525" height="383" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-637" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/wp-content/gallery/christmas/christmas_wallpaper.jpg" title=" " class="shutterset_set_42" >
								<img title="christmas_wallpaper" alt="thumbs christmas wallpaper Desktop Wallpapers for Christmas" src="http://rockstartemplate.com/wp-content/gallery/christmas/thumbs/thumbs_christmas_wallpaper.jpg" width="525" height="387" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-638" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/wp-content/gallery/christmas/merry-christmas_wallpapers_desktop.jpg" title=" " class="shutterset_set_42" >
								<img title="merry-christmas_wallpapers_desktop" alt="thumbs merry christmas wallpapers desktop Desktop Wallpapers for Christmas" src="http://rockstartemplate.com/wp-content/gallery/christmas/thumbs/thumbs_merry-christmas_wallpapers_desktop.jpg" width="525" height="382" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-639" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/wp-content/gallery/christmas/merry_christmas.jpg" title=" " class="shutterset_set_42" >
								<img title="merry_christmas" alt="thumbs merry christmas Desktop Wallpapers for Christmas" src="http://rockstartemplate.com/wp-content/gallery/christmas/thumbs/thumbs_merry_christmas.jpg" width="525" height="394" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-640" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/wp-content/gallery/christmas/merry_christmas_pictures.jpg" title=" " class="shutterset_set_42" >
								<img title="merry_christmas_pictures" alt="thumbs merry christmas pictures Desktop Wallpapers for Christmas" src="http://rockstartemplate.com/wp-content/gallery/christmas/thumbs/thumbs_merry_christmas_pictures.jpg" width="525" height="386" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class="ngg-clear"></div> 	
</div>


]]></content:encoded>
			<wfw:commentRss>http://rockstartemplate.com/photography/wallpapers/christmas-wallpapers/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>My Business Css theme</title>
		<link>http://rockstartemplate.com/css-templates/my-business-css-template/</link>
		<comments>http://rockstartemplate.com/css-templates/my-business-css-template/#comments</comments>
		<pubDate>Fri, 03 Dec 2010 14:23:57 +0000</pubDate>
		<dc:creator>Rockstar</dc:creator>
				<category><![CDATA[CSS Templates]]></category>
		<category><![CDATA[featured]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[template]]></category>
		<category><![CDATA[theme]]></category>

		<guid isPermaLink="false">http://rockstartemplate.com/?p=1060</guid>
		<description><![CDATA[My Business Template is a free CSS Template from Rockstartemplate.com. This CSS Theme has been released for FREE ! You can use this template for any type of personal or commercial use. All we need is a link back to our site at the bottom of the Template. My Business template is a 3-column , [...]]]></description>
			<content:encoded><![CDATA[<p>My Business Template is a free CSS Template from Rockstartemplate.com. This  CSS Theme has been released for FREE ! You can use this template for any type of personal or commercial use. All we need is a link back to our site at the bottom of the Template.</p>
<p>My Business template is a 3-column , cross-browser friendly template designed to suit your business needs. This template has been designed to meet WEB 2.0 requirements.</p>
<p>Let us see some of the features of this Template.</p>
<p>* W3C standards compliant.<br />
* Light weighted.<br />
* Professional Image Design.<br />
* DIV tags. [ No Frames..!! ]<br />
* High Clarity Images.<br />
* Easily Editable.<br />
* Free download and can be modified.</p>
<p><strong>Screenshot:</strong></p>
<p><img class="aligncenter" title="Business CSS Template" src="http://rockstartemplate.com/css-templates/Business_Css_Template/images/screenshot.jpg" alt="screenshot My Business Css theme" width="519" height="646" /></p>
<h3 style="text-align: center;"><strong><a href="http://rockstartemplate.com/css-templates/Business_Css_Template/index.html">Preview this Template</a> | <a href="http://rockstartemplate.com/css-templates/Business_Css_Template/Business_Css_Template.rar">Download this Template</a></strong></h3>
<p>You can find more CSS themes at http://rockstartemplate.com/category/css-templates/.</p>
]]></content:encoded>
			<wfw:commentRss>http://rockstartemplate.com/css-templates/my-business-css-template/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Shrek Movie posters</title>
		<link>http://rockstartemplate.com/photography/shrek-movie-posters/</link>
		<comments>http://rockstartemplate.com/photography/shrek-movie-posters/#comments</comments>
		<pubDate>Thu, 25 Nov 2010 18:07:36 +0000</pubDate>
		<dc:creator>Rockstar</dc:creator>
				<category><![CDATA[featured]]></category>
		<category><![CDATA[Movie Wallpapers]]></category>
		<category><![CDATA[Photography]]></category>
		<category><![CDATA[movie]]></category>
		<category><![CDATA[shrek]]></category>
		<category><![CDATA[Wallpapers]]></category>

		<guid isPermaLink="false">http://rockstartemplate.com/?p=994</guid>
		<description><![CDATA[Shrek movie is an animated comedy film, based on fairy tale picture book Shrek!. This movie directed by Andrew Adamson and Vicky Jenson, excels in computer animation. Are you looking for a high quality Shrek movie Posters ? Then, you are at the right place. We came up with quite a few pictures from Shrek [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Shrek movie is an animated comedy film, based on fairy tale picture book Shrek!. This movie directed by Andrew Adamson and Vicky Jenson, excels in computer animation.</p>
<p style="text-align: justify;">Are you looking for a high quality Shrek movie Posters ? Then, you are at the right place. We came up with quite a few pictures from Shrek movie. Find the posters below.,</p>
<div class="ngg-galleryoverview" id="ngg-gallery-40-994">


	
	<!-- Thumbnails -->
		
	<div id="ngg-image-604" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/wp-content/gallery/shrek/Princess-Fiona-and-shrek.jpg" title=" " class="shutterset_set_40" >
								<img title="Princess-Fiona-and-shrek" alt="thumbs Princess Fiona and shrek Shrek Movie posters" src="http://rockstartemplate.com/wp-content/gallery/shrek/thumbs/thumbs_Princess-Fiona-and-shrek.jpg" width="525" height="375" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-605" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/wp-content/gallery/shrek/Shrek-Forever.jpg" title=" " class="shutterset_set_40" >
								<img title="Shrek-Forever" alt="thumbs Shrek Forever Shrek Movie posters" src="http://rockstartemplate.com/wp-content/gallery/shrek/thumbs/thumbs_Shrek-Forever.jpg" width="525" height="350" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-606" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/wp-content/gallery/shrek/Shrek-movie.jpg" title=" " class="shutterset_set_40" >
								<img title="Shrek-movie" alt="thumbs Shrek movie Shrek Movie posters" src="http://rockstartemplate.com/wp-content/gallery/shrek/thumbs/thumbs_Shrek-movie.jpg" width="525" height="387" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-607" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/wp-content/gallery/shrek/Shrek-picture.jpg" title=" " class="shutterset_set_40" >
								<img title="Shrek-picture" alt="thumbs Shrek picture Shrek Movie posters" src="http://rockstartemplate.com/wp-content/gallery/shrek/thumbs/thumbs_Shrek-picture.jpg" width="525" height="328" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-608" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/wp-content/gallery/shrek/ShrekTheme.png" title=" " class="shutterset_set_40" >
								<img title="ShrekTheme" alt="thumbs ShrekTheme Shrek Movie posters" src="http://rockstartemplate.com/wp-content/gallery/shrek/thumbs/thumbs_ShrekTheme.png" width="525" height="312" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-609" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/wp-content/gallery/shrek/Shrek_image_picture.jpg" title=" " class="shutterset_set_40" >
								<img title="Shrek_image_picture" alt="thumbs Shrek image picture Shrek Movie posters" src="http://rockstartemplate.com/wp-content/gallery/shrek/thumbs/thumbs_Shrek_image_picture.jpg" width="525" height="468" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-610" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/wp-content/gallery/shrek/shrek-donkey-cat.jpg" title=" " class="shutterset_set_40" >
								<img title="shrek-donkey-cat" alt="thumbs shrek donkey cat Shrek Movie posters" src="http://rockstartemplate.com/wp-content/gallery/shrek/thumbs/thumbs_shrek-donkey-cat.jpg" width="525" height="366" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-611" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/wp-content/gallery/shrek/shrek_family_picture.jpg" title=" " class="shutterset_set_40" >
								<img title="shrek_family_picture" alt="thumbs shrek family picture Shrek Movie posters" src="http://rockstartemplate.com/wp-content/gallery/shrek/thumbs/thumbs_shrek_family_picture.jpg" width="525" height="458" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-612" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/wp-content/gallery/shrek/shrek_images.jpg" title=" " class="shutterset_set_40" >
								<img title="shrek_images" alt="thumbs shrek images Shrek Movie posters" src="http://rockstartemplate.com/wp-content/gallery/shrek/thumbs/thumbs_shrek_images.jpg" width="525" height="335" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-613" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/wp-content/gallery/shrek/shrek_movie.jpg" title=" " class="shutterset_set_40" >
								<img title="shrek_movie" alt="thumbs shrek movie Shrek Movie posters" src="http://rockstartemplate.com/wp-content/gallery/shrek/thumbs/thumbs_shrek_movie.jpg" width="525" height="295" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-614" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/wp-content/gallery/shrek/shrek_movie_posters.jpg" title=" " class="shutterset_set_40" >
								<img title="shrek_movie_posters" alt="thumbs shrek movie posters Shrek Movie posters" src="http://rockstartemplate.com/wp-content/gallery/shrek/thumbs/thumbs_shrek_movie_posters.jpg" width="525" height="384" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-615" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/wp-content/gallery/shrek/shrek_with_donkey.jpg" title=" " class="shutterset_set_40" >
								<img title="shrek_with_donkey" alt="thumbs shrek with donkey Shrek Movie posters" src="http://rockstartemplate.com/wp-content/gallery/shrek/thumbs/thumbs_shrek_with_donkey.jpg" width="525" height="394" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class="ngg-clear"></div> 	
</div>

]]></content:encoded>
			<wfw:commentRss>http://rockstartemplate.com/photography/shrek-movie-posters/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Movie &#8211; Voyage of the Dawn Treader Pictures</title>
		<link>http://rockstartemplate.com/photography/voyage-dawn-treader-movie-picture/</link>
		<comments>http://rockstartemplate.com/photography/voyage-dawn-treader-movie-picture/#comments</comments>
		<pubDate>Wed, 14 Apr 2010 06:33:40 +0000</pubDate>
		<dc:creator>Rockstar</dc:creator>
				<category><![CDATA[featured]]></category>
		<category><![CDATA[Movie Wallpapers]]></category>
		<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://rockstartemplate.com/?p=974</guid>
		<description><![CDATA[The Chronicles of Narnia &#8211; The Voyage of the Dawn Treader is one of the most expecting movie in 2010. This is an upcoming adventurous film based on the novel, The Chronicles of Narnia. This movie will be distributed by 20th Century fox, but the last version of the series, Prince caspian was distributed by [...]]]></description>
			<content:encoded><![CDATA[<p>The Chronicles of Narnia &#8211; The Voyage of the Dawn Treader is one of the most expecting movie in 2010. This is an upcoming adventurous film based on the novel, The Chronicles of Narnia. This movie will be distributed by 20th Century fox, but the last version of the series, Prince caspian was distributed by Walt Disney Pictures. This film will be released on December, 2010.   </p>
<p>Oops I&#8217;m giving too much of info about the movie <img src='http://rockstartemplate.com/wp-includes/images/smilies/icon_razz.gif' alt="icon razz Movie   Voyage of the Dawn Treader Pictures" class='wp-smiley' title="Movie   Voyage of the Dawn Treader Pictures" /> . Find some snaps took in this movie. Click the pictures to enlarge.</p>
<div class="ngg-galleryoverview" id="ngg-gallery-39-974">


	
	<!-- Thumbnails -->
		
	<div id="ngg-image-599" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/wp-content/gallery/voyage-of-the-dawn-treader/voyage-of-thedawn-treader_chronicles-of-narnia-pictures.jpg" title=" " class="shutterset_set_39" >
								<img title="voyage-of-thedawn-treader_chronicles-of-narnia-pictures" alt="thumbs voyage of thedawn treader chronicles of narnia pictures Movie   Voyage of the Dawn Treader Pictures" src="http://rockstartemplate.com/wp-content/gallery/voyage-of-the-dawn-treader/thumbs/thumbs_voyage-of-thedawn-treader_chronicles-of-narnia-pictures.jpg" width="525" height="350" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-602" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/wp-content/gallery/voyage-of-the-dawn-treader/voyage-of-thedawn-treader_chronicles-of-narnia3-wallpaper.jpg" title=" " class="shutterset_set_39" >
								<img title="voyage-of-thedawn-treader_chronicles-of-narnia3-wallpaper" alt="thumbs voyage of thedawn treader chronicles of narnia3 wallpaper Movie   Voyage of the Dawn Treader Pictures" src="http://rockstartemplate.com/wp-content/gallery/voyage-of-the-dawn-treader/thumbs/thumbs_voyage-of-thedawn-treader_chronicles-of-narnia3-wallpaper.jpg" width="525" height="394" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-603" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/wp-content/gallery/voyage-of-the-dawn-treader/voyage-of-thedawn-treader_chronicles-of-narnia3.jpg" title=" " class="shutterset_set_39" >
								<img title="voyage-of-thedawn-treader_chronicles-of-narnia3" alt="thumbs voyage of thedawn treader chronicles of narnia3 Movie   Voyage of the Dawn Treader Pictures" src="http://rockstartemplate.com/wp-content/gallery/voyage-of-the-dawn-treader/thumbs/thumbs_voyage-of-thedawn-treader_chronicles-of-narnia3.jpg" width="525" height="394" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class="ngg-clear"></div> 	
</div>

]]></content:encoded>
			<wfw:commentRss>http://rockstartemplate.com/photography/voyage-dawn-treader-movie-picture/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Huge Collection of Game Wallpapers</title>
		<link>http://rockstartemplate.com/photography/game-wallpaper-collection/</link>
		<comments>http://rockstartemplate.com/photography/game-wallpaper-collection/#comments</comments>
		<pubDate>Fri, 02 Apr 2010 04:29:12 +0000</pubDate>
		<dc:creator>Rockstar</dc:creator>
				<category><![CDATA[featured]]></category>
		<category><![CDATA[Games]]></category>
		<category><![CDATA[Photography]]></category>
		<category><![CDATA[collection]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[photos]]></category>
		<category><![CDATA[pictures]]></category>
		<category><![CDATA[wallpaper]]></category>

		<guid isPermaLink="false">http://rockstartemplate.com/?p=929</guid>
		<description><![CDATA[Welcome to the Great Collection of Game Wallpapers. Sometimes you just gotta have some reason to work, right? Well but there is no reason for you to play Games. This Post is dedicated to all the Gaming Freaks out there who want to know about latest games and its wallpapers. Here we come up with [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Welcome to the Great Collection of Game Wallpapers. Sometimes you just gotta have some reason to work, right? Well but there is no reason for you to play Games. This Post is dedicated to all the Gaming Freaks out there who want to know about latest games and its wallpapers. Here we come up with some 20+ collection of latest Game Wallpapers.</p>
<p style="text-align: justify;">Here we have compiled a huge list of some fascinating, outstanding and beautifully designed game Wallpapers[You can also call these as Game Posters <img src='http://rockstartemplate.com/wp-includes/images/smilies/icon_wink.gif' alt="icon wink Huge Collection of Game Wallpapers" class='wp-smiley' title="Huge Collection of Game Wallpapers" /> ]. Rather you can see this collection as New and Fresh set of Gaming Wallpapers. Grab these wallpapers and decorate your Desktop with the same.</p>
<p>Click on the Pictures To Enlarge .. !!</p>
<div style="align:center;text-align:center">
<div class="ngg-galleryoverview" id="ngg-gallery-38-929">


	
	<!-- Thumbnails -->
		
	<div id="ngg-image-577" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/Games/Assassinscreed_game_picture.jpg" title="Assassins Creed " class="shutterset_set_38" >
								<img title="Assassinscreed_game_picture" alt="thumbs Assassinscreed game picture Huge Collection of Game Wallpapers" src="http://rockstartemplate.com/Games/thumbs/thumbs_Assassinscreed_game_picture.jpg" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-578" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/Games/Gears_of_war_game.jpg" title="Gears Of War" class="shutterset_set_38" >
								<img title="Gears_of_war_game" alt="thumbs Gears of war game Huge Collection of Game Wallpapers" src="http://rockstartemplate.com/Games/thumbs/thumbs_Gears_of_war_game.jpg" width="525" height="394" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-579" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/Games/Heroes_of_Might_and_Magic.jpg" title="Heroes of Might and Magic" class="shutterset_set_38" >
								<img title="Heroes_of_Might_and_Magic" alt="thumbs Heroes of Might and Magic Huge Collection of Game Wallpapers" src="http://rockstartemplate.com/Games/thumbs/thumbs_Heroes_of_Might_and_Magic.jpg" width="525" height="394" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-580" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/Games/Mortal_Kombat_wallpaper_game.jpg" title="Mortal Kombat" class="shutterset_set_38" >
								<img title="Mortal_Kombat_wallpaper_game" alt="thumbs Mortal Kombat wallpaper game Huge Collection of Game Wallpapers" src="http://rockstartemplate.com/Games/thumbs/thumbs_Mortal_Kombat_wallpaper_game.jpg" width="525" height="420" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-581" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/Games/Sims_wallpaper.jpg" title="SIMS" class="shutterset_set_38" >
								<img title="Sims_wallpaper" alt="thumbs Sims wallpaper Huge Collection of Game Wallpapers" src="http://rockstartemplate.com/Games/thumbs/thumbs_Sims_wallpaper.jpg" width="525" height="394" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-582" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/Games/aliens-vs-predator-3-game-wallpaper.jpg" title="Alien Vs Predator" class="shutterset_set_38" >
								<img title="aliens-vs-predator-3-game-wallpaper" alt="thumbs aliens vs predator 3 game wallpaper Huge Collection of Game Wallpapers" src="http://rockstartemplate.com/Games/thumbs/thumbs_aliens-vs-predator-3-game-wallpaper.jpg" width="525" height="295" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-583" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/Games/apb_Game_screenshot.jpg" title="APB" class="shutterset_set_38" >
								<img title="apb_Game_screenshot" alt="thumbs apb Game screenshot Huge Collection of Game Wallpapers" src="http://rockstartemplate.com/Games/thumbs/thumbs_apb_Game_screenshot.jpg" width="525" height="422" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-584" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/Games/battlefield2_game_wallpaper.jpg" title="Battle Field " class="shutterset_set_38" >
								<img title="battlefield2_game_wallpaper" alt="thumbs battlefield2 game wallpaper Huge Collection of Game Wallpapers" src="http://rockstartemplate.com/Games/thumbs/thumbs_battlefield2_game_wallpaper.jpg" width="525" height="394" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-585" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/Games/bioshock-2-sea-of-dreams_wallpaper.jpg" title="Bio-Shock" class="shutterset_set_38" >
								<img title="bioshock-2-sea-of-dreams_wallpaper" alt="thumbs bioshock 2 sea of dreams wallpaper Huge Collection of Game Wallpapers" src="http://rockstartemplate.com/Games/thumbs/thumbs_bioshock-2-sea-of-dreams_wallpaper.jpg" width="525" height="328" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-586" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/Games/callofduty4-wallpaper.jpg" title="Call Of Duty" class="shutterset_set_38" >
								<img title="callofduty4-wallpaper" alt="thumbs callofduty4 wallpaper Huge Collection of Game Wallpapers" src="http://rockstartemplate.com/Games/thumbs/thumbs_callofduty4-wallpaper.jpg" width="525" height="328" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-587" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/Games/counter-strike-poster-wallpaper.jpg" title="Counter Strike" class="shutterset_set_38" >
								<img title="counter-strike-poster-wallpaper" alt="thumbs counter strike poster wallpaper Huge Collection of Game Wallpapers" src="http://rockstartemplate.com/Games/thumbs/thumbs_counter-strike-poster-wallpaper.jpg" width="525" height="394" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-588" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/Games/dragon-age-origin-game.jpeg" title="Dragon Age Origin" class="shutterset_set_38" >
								<img title="dragon-age-origin-game" alt=" Huge Collection of Game Wallpapers" src="http://rockstartemplate.com/Games/thumbs/thumbs_dragon-age-origin-game.jpeg" width="525" height="328" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-589" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/Games/fakescreen_Gta4-game.jpg" title="GTA" class="shutterset_set_38" >
								<img title="fakescreen_Gta4-game" alt="thumbs fakescreen Gta4 game Huge Collection of Game Wallpapers" src="http://rockstartemplate.com/Games/thumbs/thumbs_fakescreen_Gta4-game.jpg" width="525" height="441" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-590" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/Games/fallout-3-game-wallpaper.jpg" title="Fallout" class="shutterset_set_38" >
								<img title="fallout-3-game-wallpaper" alt="thumbs fallout 3 game wallpaper Huge Collection of Game Wallpapers" src="http://rockstartemplate.com/Games/thumbs/thumbs_fallout-3-game-wallpaper.jpg" width="525" height="294" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-591" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/Games/far_cry_2_game_wallpaper.jpg" title="Far Cry" class="shutterset_set_38" >
								<img title="far_cry_2_game_wallpaper" alt="thumbs far cry 2 game wallpaper Huge Collection of Game Wallpapers" src="http://rockstartemplate.com/Games/thumbs/thumbs_far_cry_2_game_wallpaper.jpg" width="525" height="394" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-592" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/Games/mass-effect-2-game-wallpaper.jpg" title="Mass Effect" class="shutterset_set_38" >
								<img title="mass-effect-2-game-wallpaper" alt="thumbs mass effect 2 game wallpaper Huge Collection of Game Wallpapers" src="http://rockstartemplate.com/Games/thumbs/thumbs_mass-effect-2-game-wallpaper.jpg" width="525" height="394" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-593" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/Games/metal-gear-solid-4-wallpaper-game.jpg" title="Metal Gear Solid" class="shutterset_set_38" >
								<img title="metal-gear-solid-4-wallpaper-game" alt="thumbs metal gear solid 4 wallpaper game Huge Collection of Game Wallpapers" src="http://rockstartemplate.com/Games/thumbs/thumbs_metal-gear-solid-4-wallpaper-game.jpg" width="525" height="394" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-595" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/Games/need_for_speed_game_nfs_shift.jpg" title="Need For Speed" class="shutterset_set_38" >
								<img title="need_for_speed_game_nfs_shift" alt="thumbs need for speed game nfs shift Huge Collection of Game Wallpapers" src="http://rockstartemplate.com/Games/thumbs/thumbs_need_for_speed_game_nfs_shift.jpg" width="525" height="394" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-596" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/Games/wow-wrath-of-the-lich-king-wallpapers-game.jpg" title="Wrath of Lich King" class="shutterset_set_38" >
								<img title="wow-wrath-of-the-lich-king-wallpapers-game" alt="thumbs wow wrath of the lich king wallpapers game Huge Collection of Game Wallpapers" src="http://rockstartemplate.com/Games/thumbs/thumbs_wow-wrath-of-the-lich-king-wallpapers-game.jpg" width="525" height="394" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-598" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/Games/modern-warfare-2-wallpaper.jpg" title="Modern Warfare" class="shutterset_set_38" >
								<img title="modern-warfare-2-wallpaper" alt="thumbs modern warfare 2 wallpaper Huge Collection of Game Wallpapers" src="http://rockstartemplate.com/Games/thumbs/thumbs_modern-warfare-2-wallpaper.jpg" width="525" height="394" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class="ngg-clear"></div> 	
</div>

</div>
]]></content:encoded>
			<wfw:commentRss>http://rockstartemplate.com/photography/game-wallpaper-collection/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Huge Collection of 1024 * 768 Wallpapers</title>
		<link>http://rockstartemplate.com/photography/wallpapers/1024-768-wallpaper-collection/</link>
		<comments>http://rockstartemplate.com/photography/wallpapers/1024-768-wallpaper-collection/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 03:53:43 +0000</pubDate>
		<dc:creator>Rockstar</dc:creator>
				<category><![CDATA[featured]]></category>
		<category><![CDATA[Photography]]></category>
		<category><![CDATA[Wallpapers]]></category>

		<guid isPermaLink="false">http://rockstartemplate.com/?p=910</guid>
		<description><![CDATA[Here comes the greatest collection of 1024*768 wallpapers. Are you searching for a right wallpaper for your desktop PC ?  Then, you are in right Place. You can find one for you here. So What can you find below ? Wallpaper about nature or digital images ? or wallpaper about Creativity or Photography ? Let [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Here comes the greatest collection of 1024*768 wallpapers. Are you searching for a right wallpaper for your desktop PC ?  Then, you are in right Place. You can find one for you here.</p>
<p style="text-align: justify;"><strong>So What can you find below ?</strong><br />
Wallpaper about nature or digital images ? or wallpaper about Creativity or Photography ? Let me tell you one thing that you can find every thing out here ..! Empower your desktop with the below wallpapers. Click on the Images to Enlarge.</p>
<div class="ngg-galleryoverview" id="ngg-gallery-36-910">


	
	<!-- Thumbnails -->
		
	<div id="ngg-image-542" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/wp-content/gallery/1024768/Morning_sun_rise_wallpeper.jpg" title=" " class="shutterset_set_36" >
								<img title="Morning_sun_rise_wallpeper" alt="thumbs Morning sun rise wallpeper Huge Collection of 1024 * 768 Wallpapers" src="http://rockstartemplate.com/wp-content/gallery/1024768/thumbs/thumbs_Morning_sun_rise_wallpeper.jpg" width="525" height="394" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-543" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/wp-content/gallery/1024768/Mountain_wallpaper.jpg" title=" " class="shutterset_set_36" >
								<img title="Mountain_wallpaper" alt="thumbs Mountain wallpaper Huge Collection of 1024 * 768 Wallpapers" src="http://rockstartemplate.com/wp-content/gallery/1024768/thumbs/thumbs_Mountain_wallpaper.jpg" width="525" height="394" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-544" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/wp-content/gallery/1024768/Natural_pictures.jpg" title=" " class="shutterset_set_36" >
								<img title="Natural_pictures" alt="thumbs Natural pictures Huge Collection of 1024 * 768 Wallpapers" src="http://rockstartemplate.com/wp-content/gallery/1024768/thumbs/thumbs_Natural_pictures.jpg" width="525" height="394" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-545" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/wp-content/gallery/1024768/Nature_tree_wallpaper.jpg" title=" " class="shutterset_set_36" >
								<img title="Nature_tree_wallpaper" alt="thumbs Nature tree wallpaper Huge Collection of 1024 * 768 Wallpapers" src="http://rockstartemplate.com/wp-content/gallery/1024768/thumbs/thumbs_Nature_tree_wallpaper.jpg" width="525" height="394" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-546" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/wp-content/gallery/1024768/Nature_wallpapers.jpg" title=" " class="shutterset_set_36" >
								<img title="Nature_wallpapers" alt="thumbs Nature wallpapers Huge Collection of 1024 * 768 Wallpapers" src="http://rockstartemplate.com/wp-content/gallery/1024768/thumbs/thumbs_Nature_wallpapers.jpg" width="525" height="394" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-547" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/wp-content/gallery/1024768/Rising_star_wallpaper.jpg" title=" " class="shutterset_set_36" >
								<img title="Rising_star_wallpaper" alt="thumbs Rising star wallpaper Huge Collection of 1024 * 768 Wallpapers" src="http://rockstartemplate.com/wp-content/gallery/1024768/thumbs/thumbs_Rising_star_wallpaper.jpg" width="525" height="420" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-548" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/wp-content/gallery/1024768/Skull_wallpaper.jpg" title=" " class="shutterset_set_36" >
								<img title="Skull_wallpaper" alt="thumbs Skull wallpaper Huge Collection of 1024 * 768 Wallpapers" src="http://rockstartemplate.com/wp-content/gallery/1024768/thumbs/thumbs_Skull_wallpaper.jpg" width="525" height="394" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-549" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/wp-content/gallery/1024768/Sun_rays_wallpaper.jpg" title=" " class="shutterset_set_36" >
								<img title="Sun_rays_wallpaper" alt="thumbs Sun rays wallpaper Huge Collection of 1024 * 768 Wallpapers" src="http://rockstartemplate.com/wp-content/gallery/1024768/thumbs/thumbs_Sun_rays_wallpaper.jpg" width="525" height="394" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-550" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/wp-content/gallery/1024768/Water_fall_effect_wallpaper.jpg" title=" " class="shutterset_set_36" >
								<img title="Water_fall_effect_wallpaper" alt="thumbs Water fall effect wallpaper Huge Collection of 1024 * 768 Wallpapers" src="http://rockstartemplate.com/wp-content/gallery/1024768/thumbs/thumbs_Water_fall_effect_wallpaper.jpg" width="525" height="394" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-551" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/wp-content/gallery/1024768/Waterfall_mountain.jpg" title=" " class="shutterset_set_36" >
								<img title="Waterfall_mountain" alt="thumbs Waterfall mountain Huge Collection of 1024 * 768 Wallpapers" src="http://rockstartemplate.com/wp-content/gallery/1024768/thumbs/thumbs_Waterfall_mountain.jpg" width="525" height="394" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-552" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/wp-content/gallery/1024768/modern-creative_wallpaper.jpg" title=" " class="shutterset_set_36" >
								<img title="modern-creative_wallpaper" alt="thumbs modern creative wallpaper Huge Collection of 1024 * 768 Wallpapers" src="http://rockstartemplate.com/wp-content/gallery/1024768/thumbs/thumbs_modern-creative_wallpaper.jpg" width="525" height="394" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-553" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/wp-content/gallery/1024768/natural_picture.jpg" title=" " class="shutterset_set_36" >
								<img title="natural_picture" alt="thumbs natural picture Huge Collection of 1024 * 768 Wallpapers" src="http://rockstartemplate.com/wp-content/gallery/1024768/thumbs/thumbs_natural_picture.jpg" width="525" height="394" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-554" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/wp-content/gallery/1024768/nature_wallpaper.jpg" title=" " class="shutterset_set_36" >
								<img title="nature_wallpaper" alt="thumbs nature wallpaper Huge Collection of 1024 * 768 Wallpapers" src="http://rockstartemplate.com/wp-content/gallery/1024768/thumbs/thumbs_nature_wallpaper.jpg" width="525" height="394" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-555" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/wp-content/gallery/1024768/night_effect_wallpaper.jpg" title=" " class="shutterset_set_36" >
								<img title="night_effect_wallpaper" alt="thumbs night effect wallpaper Huge Collection of 1024 * 768 Wallpapers" src="http://rockstartemplate.com/wp-content/gallery/1024768/thumbs/thumbs_night_effect_wallpaper.jpg" width="525" height="394" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-556" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/wp-content/gallery/1024768/sea_wallpaper.jpg" title=" " class="shutterset_set_36" >
								<img title="sea_wallpaper" alt="thumbs sea wallpaper Huge Collection of 1024 * 768 Wallpapers" src="http://rockstartemplate.com/wp-content/gallery/1024768/thumbs/thumbs_sea_wallpaper.jpg" width="525" height="394" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-557" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/wp-content/gallery/1024768/sea_wallpapers.jpg" title="MIL50059//1" class="shutterset_set_36" >
								<img title="MIL50059//1" alt="thumbs sea wallpapers Huge Collection of 1024 * 768 Wallpapers" src="http://rockstartemplate.com/wp-content/gallery/1024768/thumbs/thumbs_sea_wallpapers.jpg" width="525" height="394" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-558" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/wp-content/gallery/1024768/sunset_wallpaper.jpg" title=" " class="shutterset_set_36" >
								<img title="sunset_wallpaper" alt="thumbs sunset wallpaper Huge Collection of 1024 * 768 Wallpapers" src="http://rockstartemplate.com/wp-content/gallery/1024768/thumbs/thumbs_sunset_wallpaper.jpg" width="525" height="394" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-559" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/wp-content/gallery/1024768/water_fall_wallpaper.jpg" title=" " class="shutterset_set_36" >
								<img title="water_fall_wallpaper" alt="thumbs water fall wallpaper Huge Collection of 1024 * 768 Wallpapers" src="http://rockstartemplate.com/wp-content/gallery/1024768/thumbs/thumbs_water_fall_wallpaper.jpg" width="525" height="394" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-560" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/wp-content/gallery/1024768/1024x768-digital-wallpaper.jpg" title=" " class="shutterset_set_36" >
								<img title="1024x768-digital-wallpaper" alt="thumbs 1024x768 digital wallpaper Huge Collection of 1024 * 768 Wallpapers" src="http://rockstartemplate.com/wp-content/gallery/1024768/thumbs/thumbs_1024x768-digital-wallpaper.jpg" width="525" height="394" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-561" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/wp-content/gallery/1024768/Art-landscape_wallpaper.jpg" title=" " class="shutterset_set_36" >
								<img title="Art-landscape_wallpaper" alt="thumbs Art landscape wallpaper Huge Collection of 1024 * 768 Wallpapers" src="http://rockstartemplate.com/wp-content/gallery/1024768/thumbs/thumbs_Art-landscape_wallpaper.jpg" width="525" height="394" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-562" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/wp-content/gallery/1024768/Blue_sky_Art_wallpaper.jpg" title=" " class="shutterset_set_36" >
								<img title="Blue_sky_Art_wallpaper" alt="thumbs Blue sky Art wallpaper Huge Collection of 1024 * 768 Wallpapers" src="http://rockstartemplate.com/wp-content/gallery/1024768/thumbs/thumbs_Blue_sky_Art_wallpaper.jpg" width="525" height="394" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-563" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/wp-content/gallery/1024768/Cloud_photography.jpg" title=" " class="shutterset_set_36" >
								<img title="Cloud_photography" alt="thumbs Cloud photography Huge Collection of 1024 * 768 Wallpapers" src="http://rockstartemplate.com/wp-content/gallery/1024768/thumbs/thumbs_Cloud_photography.jpg" width="525" height="394" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-564" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/wp-content/gallery/1024768/Creative_wallpaper.jpg" title=" " class="shutterset_set_36" >
								<img title="Creative_wallpaper" alt="thumbs Creative wallpaper Huge Collection of 1024 * 768 Wallpapers" src="http://rockstartemplate.com/wp-content/gallery/1024768/thumbs/thumbs_Creative_wallpaper.jpg" width="525" height="394" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-565" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/wp-content/gallery/1024768/Digital_art_wallpaper.jpg" title=" " class="shutterset_set_36" >
								<img title="Digital_art_wallpaper" alt="thumbs Digital art wallpaper Huge Collection of 1024 * 768 Wallpapers" src="http://rockstartemplate.com/wp-content/gallery/1024768/thumbs/thumbs_Digital_art_wallpaper.jpg" width="525" height="394" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-566" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/wp-content/gallery/1024768/Digital_design_picture.jpg" title=" " class="shutterset_set_36" >
								<img title="Digital_design_picture" alt="thumbs Digital design picture Huge Collection of 1024 * 768 Wallpapers" src="http://rockstartemplate.com/wp-content/gallery/1024768/thumbs/thumbs_Digital_design_picture.jpg" width="525" height="394" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-567" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/wp-content/gallery/1024768/Digital_wallpaper.jpg" title=" " class="shutterset_set_36" >
								<img title="Digital_wallpaper" alt="thumbs Digital wallpaper Huge Collection of 1024 * 768 Wallpapers" src="http://rockstartemplate.com/wp-content/gallery/1024768/thumbs/thumbs_Digital_wallpaper.jpg" width="525" height="394" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-568" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/wp-content/gallery/1024768/Fantasy_awesome_wallpaper.jpg" title=" " class="shutterset_set_36" >
								<img title="Fantasy_awesome_wallpaper" alt="thumbs Fantasy awesome wallpaper Huge Collection of 1024 * 768 Wallpapers" src="http://rockstartemplate.com/wp-content/gallery/1024768/thumbs/thumbs_Fantasy_awesome_wallpaper.jpg" width="525" height="394" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-569" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/wp-content/gallery/1024768/Fantasy_picture.jpg" title=" " class="shutterset_set_36" >
								<img title="Fantasy_picture" alt="thumbs Fantasy picture Huge Collection of 1024 * 768 Wallpapers" src="http://rockstartemplate.com/wp-content/gallery/1024768/thumbs/thumbs_Fantasy_picture.jpg" width="525" height="394" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-570" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/wp-content/gallery/1024768/Fantasy_wallpapers.jpg" title=" " class="shutterset_set_36" >
								<img title="Fantasy_wallpapers" alt="thumbs Fantasy wallpapers Huge Collection of 1024 * 768 Wallpapers" src="http://rockstartemplate.com/wp-content/gallery/1024768/thumbs/thumbs_Fantasy_wallpapers.jpg" width="525" height="350" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-571" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/wp-content/gallery/1024768/Island_wallpaper.jpg" title=" " class="shutterset_set_36" >
								<img title="Island_wallpaper" alt="thumbs Island wallpaper Huge Collection of 1024 * 768 Wallpapers" src="http://rockstartemplate.com/wp-content/gallery/1024768/thumbs/thumbs_Island_wallpaper.jpg" width="525" height="394" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-572" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/wp-content/gallery/1024768/Love_wallpaper.jpg" title=" " class="shutterset_set_36" >
								<img title="Love_wallpaper" alt="thumbs Love wallpaper Huge Collection of 1024 * 768 Wallpapers" src="http://rockstartemplate.com/wp-content/gallery/1024768/thumbs/thumbs_Love_wallpaper.jpg" width="525" height="394" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-573" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/wp-content/gallery/1024768/autumn_wallpapers.jpg" title=" " class="shutterset_set_36" >
								<img title="autumn_wallpapers" alt="thumbs autumn wallpapers Huge Collection of 1024 * 768 Wallpapers" src="http://rockstartemplate.com/wp-content/gallery/1024768/thumbs/thumbs_autumn_wallpapers.jpg" width="525" height="394" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-574" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/wp-content/gallery/1024768/creativity_wallpaper.jpg" title=" " class="shutterset_set_36" >
								<img title="creativity_wallpaper" alt="thumbs creativity wallpaper Huge Collection of 1024 * 768 Wallpapers" src="http://rockstartemplate.com/wp-content/gallery/1024768/thumbs/thumbs_creativity_wallpaper.jpg" width="525" height="420" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-575" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/wp-content/gallery/1024768/digital-wallpapers.jpg" title=" " class="shutterset_set_36" >
								<img title="digital-wallpapers" alt="thumbs digital wallpapers Huge Collection of 1024 * 768 Wallpapers" src="http://rockstartemplate.com/wp-content/gallery/1024768/thumbs/thumbs_digital-wallpapers.jpg" width="525" height="394" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-576" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/wp-content/gallery/1024768/forest_wallpaper.jpg" title=" " class="shutterset_set_36" >
								<img title="forest_wallpaper" alt="thumbs forest wallpaper Huge Collection of 1024 * 768 Wallpapers" src="http://rockstartemplate.com/wp-content/gallery/1024768/thumbs/thumbs_forest_wallpaper.jpg" width="525" height="394" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class="ngg-clear"></div> 	
</div>

]]></content:encoded>
			<wfw:commentRss>http://rockstartemplate.com/photography/wallpapers/1024-768-wallpaper-collection/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>April GiveAway &#8211; 100$ Contest</title>
		<link>http://rockstartemplate.com/contest/april-100dollar-contest/</link>
		<comments>http://rockstartemplate.com/contest/april-100dollar-contest/#comments</comments>
		<pubDate>Wed, 03 Mar 2010 03:39:43 +0000</pubDate>
		<dc:creator>Rockstar</dc:creator>
				<category><![CDATA[Contest]]></category>
		<category><![CDATA[featured]]></category>

		<guid isPermaLink="false">http://rockstartemplate.com/?p=809</guid>
		<description><![CDATA[Contest Ended. Winners are sent Email. Yet another contest from Rockstar Template. The theme is very simple, Comment , Participate and Win. Hammer your name in our Top Commentators spot and win 100$. This contest ends on April 15 2010 and the top commentator will get 75$ followed by 25$ for second place. You can [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Contest Ended. Winners are sent Email.</p>
<p style="text-align: justify;">Yet another contest from Rockstar Template. The theme is very simple, <strong>Comment , Participate and Win</strong>. Hammer your name in our Top Commentators spot and win 100$. This contest ends on April 15 2010 and the top commentator will get 75$ followed by 25$ for second place. You can see the Top commentator section in our homepage.</p>
<p>You can see the below Top commentator Plug-in in our Homepage.</p>
<div style="align: center; text-align: center;"><a rel="attachment wp-att-894" href="http://rockstartemplate.com/contest/april-100dollar-contest/attachment/comment/"><img class="aligncenter size-full wp-image-894" title="comment" src="http://rockstartemplate.com/wp-content/uploads/2010/03/comment.jpg" alt="comment April GiveAway   100$ Contest" width="357" height="142" /></a></div>
<p><strong>Whats the Prize ?</strong></p>
<p>1] For the First Place at the end of the contest, 75 $</p>
<p>2] For the Second Place at the end of the contest, 25$</p>
<p>[Payment will be done only in PayPal]</p>
<p><strong>Contest Start Date :</strong> March&#8217; 2010</p>
<p><strong>Contest End Date :</strong> April 15&#8242; 2010</p>
<p>So what are you waiting for ? Say you&#8217;re gonna <em>start</em> right now..!!</p>
<p><strong> </strong></p>
<p><img src="file:///C:/DOCUME%7E1/MOHANK%7E1/LOCALS%7E1/Temp/moz-screenshot-2.png" alt="moz screenshot 2 April GiveAway   100$ Contest"  title="April GiveAway   100$ Contest" /><img src="file:///C:/DOCUME%7E1/MOHANK%7E1/LOCALS%7E1/Temp/moz-screenshot-3.png" alt="moz screenshot 3 April GiveAway   100$ Contest"  title="April GiveAway   100$ Contest" /></p>
]]></content:encoded>
			<wfw:commentRss>http://rockstartemplate.com/contest/april-100dollar-contest/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Alice In Wonderland wallpapers</title>
		<link>http://rockstartemplate.com/featured/alice-in-wonderland-wallpapers/</link>
		<comments>http://rockstartemplate.com/featured/alice-in-wonderland-wallpapers/#comments</comments>
		<pubDate>Mon, 08 Feb 2010 03:26:30 +0000</pubDate>
		<dc:creator>Rockstar</dc:creator>
				<category><![CDATA[featured]]></category>
		<category><![CDATA[Movie Wallpapers]]></category>
		<category><![CDATA[Alice]]></category>
		<category><![CDATA[In]]></category>
		<category><![CDATA[Wonderland]]></category>

		<guid isPermaLink="false">http://rockstartemplate.com/?p=817</guid>
		<description><![CDATA[Yet another movie poster from Rockstartemplate.com. The movie so called &#8220;Alice in Wonderland&#8221; is a fantasy/adventure film directed by Tim Burton which was taken from a novel written by English author Lewis Carroll. Its all about a girl Alice who returns to the magical world from her childhood adventure. Mia Wasikowska plays the role of [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Yet another movie poster from Rockstartemplate.com. The movie so called &#8220;Alice in Wonderland&#8221; is a fantasy/adventure film directed by Tim Burton which was taken from a novel written by English author Lewis Carroll. Its all about a girl Alice who returns to the magical world from her childhood adventure.</p>
<p style="text-align: justify;">Mia Wasikowska plays the role of Alice, along with Johnny Depp who acted as The Mad Hatter. This movie will be a visual treat for all fantasy lovers out there. This movie is scheduled for release on March 2010.</p>
<p style="text-align: justify;">Below you can find the pictures/wallpapers from this fantasy movie.</p>

<div class="ngg-galleryoverview" id="ngg-gallery-35-817">


	
	<!-- Thumbnails -->
		
	<div id="ngg-image-531" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/wp-content/gallery/alice_in_wonderlan/Alice-In-Wonderland-Movie-Poster.jpg" title=" " class="shutterset_set_35" >
								<img title="Alice-In-Wonderland-Movie-Poster" alt="thumbs Alice In Wonderland Movie Poster Alice In Wonderland wallpapers" src="http://rockstartemplate.com/wp-content/gallery/alice_in_wonderlan/thumbs/thumbs_Alice-In-Wonderland-Movie-Poster.jpg" width="338" height="500" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-532" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/wp-content/gallery/alice_in_wonderlan/AliceInWonderland_2010_release.jpg" title=" " class="shutterset_set_35" >
								<img title="AliceInWonderland_2010_release" alt="thumbs AliceInWonderland 2010 release Alice In Wonderland wallpapers" src="http://rockstartemplate.com/wp-content/gallery/alice_in_wonderlan/thumbs/thumbs_AliceInWonderland_2010_release.jpg" width="525" height="394" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-533" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/wp-content/gallery/alice_in_wonderlan/Wallpaper_alice_in_wonderland.jpg" title=" " class="shutterset_set_35" >
								<img title="Wallpaper_alice_in_wonderland" alt="thumbs Wallpaper alice in wonderland Alice In Wonderland wallpapers" src="http://rockstartemplate.com/wp-content/gallery/alice_in_wonderlan/thumbs/thumbs_Wallpaper_alice_in_wonderland.jpg" width="525" height="420" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-534" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/wp-content/gallery/alice_in_wonderlan/alice_in_wonderland.jpg" title=" " class="shutterset_set_35" >
								<img title="alice_in_wonderland" alt="thumbs alice in wonderland Alice In Wonderland wallpapers" src="http://rockstartemplate.com/wp-content/gallery/alice_in_wonderlan/thumbs/thumbs_alice_in_wonderland.jpg" width="333" height="500" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-535" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/wp-content/gallery/alice_in_wonderlan/alice_in_wonderland10.jpg" title=" " class="shutterset_set_35" >
								<img title="alice_in_wonderland10" alt="thumbs alice in wonderland10 Alice In Wonderland wallpapers" src="http://rockstartemplate.com/wp-content/gallery/alice_in_wonderlan/thumbs/thumbs_alice_in_wonderland10.jpg" width="525" height="420" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-536" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/wp-content/gallery/alice_in_wonderlan/alice_in_wonderland_HQ_Mad_hatter.jpg" title=" " class="shutterset_set_35" >
								<img title="alice_in_wonderland_HQ_Mad_hatter" alt="thumbs alice in wonderland HQ Mad hatter Alice In Wonderland wallpapers" src="http://rockstartemplate.com/wp-content/gallery/alice_in_wonderlan/thumbs/thumbs_alice_in_wonderland_HQ_Mad_hatter.jpg" width="337" height="500" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-537" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/wp-content/gallery/alice_in_wonderlan/alice_in_wonderland_johnney_dep.jpg" title=" " class="shutterset_set_35" >
								<img title="alice_in_wonderland_johnney_dep" alt="thumbs alice in wonderland johnney dep Alice In Wonderland wallpapers" src="http://rockstartemplate.com/wp-content/gallery/alice_in_wonderlan/thumbs/thumbs_alice_in_wonderland_johnney_dep.jpg" width="525" height="328" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-538" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/wp-content/gallery/alice_in_wonderlan/alice_in_wonderland_movie_poster.jpg" title=" " class="shutterset_set_35" >
								<img title="alice_in_wonderland_movie_poster" alt="thumbs alice in wonderland movie poster Alice In Wonderland wallpapers" src="http://rockstartemplate.com/wp-content/gallery/alice_in_wonderlan/thumbs/thumbs_alice_in_wonderland_movie_poster.jpg" width="525" height="420" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-539" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/wp-content/gallery/alice_in_wonderlan/alice_in_wonderland_pictures_images.jpg" title=" " class="shutterset_set_35" >
								<img title="alice_in_wonderland_pictures_images" alt="thumbs alice in wonderland pictures images Alice In Wonderland wallpapers" src="http://rockstartemplate.com/wp-content/gallery/alice_in_wonderlan/thumbs/thumbs_alice_in_wonderland_pictures_images.jpg" width="525" height="328" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-540" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/wp-content/gallery/alice_in_wonderlan/alice_in_wonderland_wallpaper.jpg" title=" " class="shutterset_set_35" >
								<img title="alice_in_wonderland_wallpaper" alt="thumbs alice in wonderland wallpaper Alice In Wonderland wallpapers" src="http://rockstartemplate.com/wp-content/gallery/alice_in_wonderlan/thumbs/thumbs_alice_in_wonderland_wallpaper.jpg" width="525" height="328" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-541" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://rockstartemplate.com/wp-content/gallery/alice_in_wonderlan/alice_in_wonderland_wallpaper2.jpg" title=" " class="shutterset_set_35" >
								<img title="alice_in_wonderland_wallpaper2" alt="thumbs alice in wonderland wallpaper2 Alice In Wonderland wallpapers" src="http://rockstartemplate.com/wp-content/gallery/alice_in_wonderlan/thumbs/thumbs_alice_in_wonderland_wallpaper2.jpg" width="525" height="420" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class="ngg-clear"></div> 	
</div>


]]></content:encoded>
			<wfw:commentRss>http://rockstartemplate.com/featured/alice-in-wonderland-wallpapers/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Black Professional Css Template</title>
		<link>http://rockstartemplate.com/css-templates/beautiful-black-professional/</link>
		<comments>http://rockstartemplate.com/css-templates/beautiful-black-professional/#comments</comments>
		<pubDate>Sun, 06 Dec 2009 17:07:15 +0000</pubDate>
		<dc:creator>Rockstar</dc:creator>
				<category><![CDATA[CSS Templates]]></category>
		<category><![CDATA[featured]]></category>
		<category><![CDATA[beauty]]></category>
		<category><![CDATA[black]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[professional]]></category>
		<category><![CDATA[template]]></category>

		<guid isPermaLink="false">http://rockstartemplate.com/?p=772</guid>
		<description><![CDATA[Yet another new Css Template from Rockstar template dot com. The name of the Theme is “Black Beauty Css Template”. As the name indicates, this theme gives Professional Black look to your website . This Template has been designed in such a way that it will meet WEB 2.0 requirements and also its absolutely free [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Yet another new Css Template from Rockstar template dot com. The name of the Theme is “Black Beauty Css Template”. As the name indicates, this theme gives Professional Black look to your website . This Template has been designed in such a way that it will meet WEB 2.0 requirements and also its absolutely free to download. Let us see some of the features of this Template.</p>
<p><strong>Features of Professional Template :</strong></p>
<p>* W3C standards compliant.<br />
* Light weighted.<br />
* Professional Image Design.<br />
* DIV tags. [ No Frames..!! ]<br />
* High Clarity Images.<br />
* Easily Editable.<br />
* Free download and can be modified.</p>
<p><strong>Sample Screen Shot :</strong></p>
<p><img class="aligncenter" title="Black Beauty Css Template" src="http://rockstartemplate.com/css-templates/Black Beauty Css Template/screenshot.jpg" alt="screenshot Black Professional Css Template" width="613" height="457" /></p>
<p>and the Navigation bar looks like this ,</p>
<p><img class="aligncenter" title="Navigation bar background" src="http://rockstartemplate.com/css-templates/Black Beauty Css Template/navi.jpg" alt="navi Black Professional Css Template" width="528" height="141" /></p>
<p>and the sidebar look like this ,</p>
<p style="text-align: center;"><img class="aligncenter" title="Sidebar Background Theme" src="http://rockstartemplate.com/css-templates/Black Beauty Css Template/side.jpg" alt="side Black Professional Css Template" width="457" height="372" /></p>
<h3 style="text-align: center;"><strong><a href="http://rockstartemplate.com/css-templates/Black Beauty Css Template/index.html">Preview this Template</a> | <a href="http://rockstartemplate.com/css-templates/Black Beauty Css Template/Black Beauty Css Template.rar">Download this Template</a></strong></h3>
<p style="text-align: center;">
<p style="text-align: justify;">Review and Comment about this template. Come Back for more updates. You can find more Css themes at <a href="http://rockstartemplate.com/category/css-templates/">http://rockstartemplate.com/category/css-templates/</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://rockstartemplate.com/css-templates/beautiful-black-professional/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Free Rss Feed Icon &#8211; Full Collection</title>
		<link>http://rockstartemplate.com/blog-resources/icons/free-rss-feed-icon-full-collection/</link>
		<comments>http://rockstartemplate.com/blog-resources/icons/free-rss-feed-icon-full-collection/#comments</comments>
		<pubDate>Wed, 27 Aug 2008 09:17:28 +0000</pubDate>
		<dc:creator>Rockstar</dc:creator>
				<category><![CDATA[featured]]></category>
		<category><![CDATA[Icons]]></category>
		<category><![CDATA[beautiful]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[downlod]]></category>
		<category><![CDATA[feed]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[icon]]></category>
		<category><![CDATA[logos]]></category>
		<category><![CDATA[rss]]></category>

		<guid isPermaLink="false">http://rockstartemplate.com/?p=148</guid>
		<description><![CDATA[Your search to Rss Feed Icons ends here . Are you looking for appropriate Rss feed icon for you web site ? then you are at right place . This post contains the huge collection of Rss Feed Icons collected from various sites . You can use one among these Rss in your site. Worlds [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Your search to Rss Feed Icons ends here . Are you looking for appropriate Rss feed icon for you web site ? then you are at right place . This post contains the huge collection of Rss Feed Icons collected from various sites . You can use one among these Rss in your site.</p>
<p><img class="aligncenter" src="http://rockstartemplate.com/feed_icon/feed_icon.jpg" alt="feed icon Free Rss Feed Icon   Full Collection " width="580" height="400" title="Free Rss Feed Icon   Full Collection " /></p>
<p><strong>Worlds Biggest Feed Icon :</strong></p>
<p><a href="http://www.havelaptopwilltravel.com/images/rss.gif" target="_blank"><img class="aligncenter" src="http://rockstartemplate.com/feed_icon/rss.gif" alt="rss Free Rss Feed Icon   Full Collection " width="580" height="500" title="Free Rss Feed Icon   Full Collection " /></a></p>
<p><strong>Design-freak.com :</strong></p>
<p><a href="http://www.design-freak.com/action/rss-icons-campaign/" target="_blank"><img class="aligncenter" src="http://rockstartemplate.com/feed_icon/feed-icon.jpg" alt="feed icon Free Rss Feed Icon   Full Collection " width="570" height="530" title="Free Rss Feed Icon   Full Collection " /></a></p>
<p><strong>FastIcon.Com:</strong></p>
<p><a href="http://fasticon.Com" target="_blank"><img class="aligncenter" src="http://rockstartemplate.com/feed_icon/circle-feeds-icon-from-fasticon.jpg" alt="circle feeds icon from fasticon Free Rss Feed Icon   Full Collection " width="580" height="319" title="Free Rss Feed Icon   Full Collection " /></a></p>
<p><a href="http://fasticon.Com"><img class="aligncenter" src="http://rockstartemplate.com/feed_icon/feedicons3.jpg" alt="feedicons3 Free Rss Feed Icon   Full Collection " width="580" height="291" title="Free Rss Feed Icon   Full Collection " /></a></p>
<p><strong>Fasticon.com and Smashingmagazine.com : </strong></p>
<p style="text-align: center;"><a href="http://smashingmagazine.com" target="_blank"><img class="aligncenter" src="http://rockstartemplate.com/feed_icon/fasticon_smashing_feed.jpg" alt="fasticon smashing feed Free Rss Feed Icon   Full Collection " width="580" height="325" title="Free Rss Feed Icon   Full Collection " /></a></p>
<p style="text-align: center;">
<p style="text-align: left;"><strong>Rockstartemplate.Com [Our Design] : </strong></p>
<p style="text-align: center;"><a href="http://rockstartemplate.com/index.php/icons/brand-new-rss-feed-icon" target="_blank"><img class="size-full wp-image-156 alignnone" title="rss-feed-icon" src="http://rockstartemplate.com/wp-content/uploads/2008/08/rss-feed-icon.jpg" alt="rss feed icon Free Rss Feed Icon   Full Collection " width="550" height="328" /></a></p>
<p style="text-align: left;"><strong>Ajaxpath.com : </strong></p>
<p style="text-align: left;"><a href="http://www.ajaxpath.com/christmas-rss-icons" target="_blank"><img class="aligncenter" src="http://rockstartemplate.com/feed_icon/feedicons21.jpg" alt="feedicons21 Free Rss Feed Icon   Full Collection " width="580" height="408" title="Free Rss Feed Icon   Full Collection " /></a></p>
<p style="text-align: left;"><strong>Deviantart.com :</strong></p>
<p style="text-align: left;"><a href="http://valen23901.deviantart.com/art/RSS-Icons-PNG-59154837" target="_blank"><img class="aligncenter" src="http://rockstartemplate.com/feed_icon/valen.jpg" alt="valen Free Rss Feed Icon   Full Collection " width="580" height="508" title="Free Rss Feed Icon   Full Collection " /></a></p>
<p style="text-align: center;">
<p><strong>Aaronovadia.com : </strong></p>
<p><a href="http://www.aaronovadia.com/clients/photoshopit/rss_feed_icon.htm" target="_blank"><img class="aligncenter" src="http://rockstartemplate.com/feed_icon/rss_icon.jpg" alt="rss icon Free Rss Feed Icon   Full Collection " width="580" height="366" title="Free Rss Feed Icon   Full Collection " /></a></p>
<p><strong>Comingupforair.net :</strong></p>
<p><a href="http://comingupforair.net/2008/01/rss-icons/" target="_blank"><img class="aligncenter" src="http://rockstartemplate.com/feed_icon/rss-icons.jpg" alt="rss icons Free Rss Feed Icon   Full Collection " width="580" height="447" title="Free Rss Feed Icon   Full Collection " /></a></p>
<p><strong>Nyssajbrown.net : </strong></p>
<p><a href="http://www.nyssajbrown.net/2007/11/07/free-rss-feed-icons/" target="_blank"><img class="aligncenter" src="http://rockstartemplate.com/feed_icon/feedicons5.jpg" alt="feedicons5 Free Rss Feed Icon   Full Collection " width="580" height="275" title="Free Rss Feed Icon   Full Collection " /></a></p>
<p>If you Like this post , Dont forget to subscribe to my Feed&#8217;s . More Feed Icons Will be updated soon , stay tuned !!</p>
]]></content:encoded>
			<wfw:commentRss>http://rockstartemplate.com/blog-resources/icons/free-rss-feed-icon-full-collection/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>
<div style="display:none">
<a href="http://www.izle.by/" title="izle" target="_blank">izle</a>
<a href="http://www.pornosee.com" title="teen porn" target="_blank">teen porn</a>
</div> 
