<?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>E-maniacs &#187; JavaScript</title>
	<atom:link href="http://www.e-maniacs.com/blog/category/javascript/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.e-maniacs.com/blog</link>
	<description>Web design maniacs</description>
	<lastBuildDate>Mon, 03 Jun 2013 00:10:05 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Jumping html pages</title>
		<link>http://www.e-maniacs.com/blog/2012/01/10/jumping-html-pages/</link>
		<comments>http://www.e-maniacs.com/blog/2012/01/10/jumping-html-pages/#comments</comments>
		<pubDate>Tue, 10 Jan 2012 08:55:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Free Vector Graphics]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[html tutorial]]></category>
		<category><![CDATA[jumping html page]]></category>
		<category><![CDATA[jumping pages]]></category>
		<category><![CDATA[jumping webpage]]></category>
		<category><![CDATA[show scrollbars]]></category>
		<category><![CDATA[vertical scrollbars visible]]></category>

		<guid isPermaLink="false">http://www.e-maniacs.com/blog/?p=3240</guid>
		<description><![CDATA[Jumping html pages: I have faced a strange problem these days when creating a html website from a interesting design. The problem was that the website content looked like jumping left-right when going through pages. This was very annoying problem, and especially happened in Mozilla Firefox and more often in Google Chrome. The problem is [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.e-maniacs.com%2Fblog%2F2012%2F01%2F10%2Fjumping-html-pages%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.e-maniacs.com%2Fblog%2F2012%2F01%2F10%2Fjumping-html-pages%2F&amp;source=emaniacs&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Jumping html pages:</p>
<p>I have faced a strange problem these days when creating a html website from a interesting design. The problem was that the website content looked like jumping left-right when going through pages. This was very annoying problem, and especially happened in Mozilla Firefox and more often in Google Chrome. The problem is that the browser detects after the entire page was loaded if vertical scroll bars are needed to be rendered.</p>
<p>Here is the solution i have found and what solved my problem:</p>
<p>Put these instructions in your page css style:</p>
<pre id="line1">html {
     overflow-y: scroll !important;
}
</pre>
<p>What this does? In fact it forces the page to always display vertical scroll bars, even when it wasn&#8217;t needed. Adding the instruction to always render scroll bars the browser knows this from the very begining and does not adds the scrollbars at the end of page loading.</p>
<p>Cheers.</p>
<pre id="line1">
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.e-maniacs.com/blog/2012/01/10/jumping-html-pages/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jquery hover map tutorial</title>
		<link>http://www.e-maniacs.com/blog/2011/10/28/jquer-hover-map-tutorial/</link>
		<comments>http://www.e-maniacs.com/blog/2011/10/28/jquer-hover-map-tutorial/#comments</comments>
		<pubDate>Fri, 28 Oct 2011 08:28:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Jquery]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[hover map]]></category>
		<category><![CDATA[image map tutorial]]></category>
		<category><![CDATA[imagemap]]></category>
		<category><![CDATA[jquery hover map]]></category>
		<category><![CDATA[Jquery map]]></category>
		<category><![CDATA[jquery map tutorial]]></category>

		<guid isPermaLink="false">http://www.e-maniacs.com/blog/?p=3114</guid>
		<description><![CDATA[This is my second post on Jquery, it came from an need to create a map for a client. The idea it was to have a map, and when hover a certain area that area is highlighted; You can also click on an area, and that area remains selected; You can see in the preview [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.e-maniacs.com%2Fblog%2F2011%2F10%2F28%2Fjquer-hover-map-tutorial%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.e-maniacs.com%2Fblog%2F2011%2F10%2F28%2Fjquer-hover-map-tutorial%2F&amp;source=emaniacs&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>This is my second post on Jquery, it came from an need to create a map for a client. The idea it was to have a map, and when hover a certain area that area is highlighted; You can also click on an area, and that area remains selected;</p>
<p>You can see in the preview below what i mean:</p>
<p><a href="http://www.e-maniacs.com/blog/wp-content/uploads/2011/10/hover_map.jpg"><img class="aligncenter size-full wp-image-3115" src="http://www.e-maniacs.com/blog/wp-content/uploads/2011/10/hover_map.jpg" alt="" width="330" height="292" /></a><span id="more-3114"></span></p>
<p>To create this map, you simply need to follow the steps below:</p>
<p><strong>1) </strong><strong> Have the entire region map in one color &#8211; the basic color:</strong></p>
<p><a href="http://www.e-maniacs.com/blog/wp-content/uploads/2011/10/map.jpg"><img class="aligncenter size-full wp-image-3116" src="http://www.e-maniacs.com/blog/wp-content/uploads/2011/10/map.jpg" alt="" width="278" height="293" /></a></p>
<p><strong>2) Slice the regions &#8211; having the hover color: &#8211; note that this picture bust be with transparent background, and same dimensions as the entire picture; this is crucial for map functioning.<br />
</strong></p>
<p><strong><a href="http://www.e-maniacs.com/blog/wp-content/uploads/2011/10/midtjylland.png"><img class="aligncenter size-full wp-image-3117" src="http://www.e-maniacs.com/blog/wp-content/uploads/2011/10/midtjylland.png" alt="" width="234" height="298" /></a></strong><strong>3) Repeat the above step for the rest of the regions</strong></p>
<p><strong>4) Define the image map for the whole picture</strong>:</p>
<p>Eg:</p>
<div>
<div><img></div>
</div>
<div>
<div><img alt="" /></div>
<div>
<div>
<div></div>
</div>
</div>
<div></div>
</div>
<div><strong>5) Add the picture for the hove region:</strong></div>
<div><img></div>
<div><strong>6) Repeat the above step for all regions</strong></div>
<div><strong>7) Here it comes the magic: &#8211; import the jquery library:</strong></div>
<div>
<pre>&lt;script type=&quot;text/javascript&quot; src=&quot;<a href="http://e-maniacs.com/boligrobotten/jquery/jquery-1.6.4.min.js">jquery/jquery-1.6.4.min.js</a>"&gt;</pre>
<p><strong> <img src='http://www.e-maniacs.com/blog/wp-includes/images/smilies/icon_cool.gif' alt='8)' class='wp-smiley' /> Make visible the needed region when hover over the map:</strong></p>
<pre>
<pre>$(document).ready(function(){	

			/* Start Map Controls*/
			jQuery("#map-container area").mouseover(function(){
				var regionMap = '.'+$(this).attr('id')+'-map';
				jQuery(regionMap).css('display', 'inline');

			}).mouseout(function(){
				var regionMap = '.'+$(this).attr('id')+'-map';

				// Check if a click event has occured and only change the Region hover state accodringly
				if (! jQuery(regionMap).hasClass('selected')) {
					jQuery(regionMap).css('display', 'none');
				}

			});

			jQuery("#map-container area").click(function(){
				jQuery('#map-container img.region').removeClass('selected').css('display', 'none');
				jQuery('#practice-container ul').removeClass('selected').css('display', 'none');

				var regionMap = '.'+$(this).attr('id')+'-map';
				jQuery(regionMap).addClass('selected').css('display', 'inline');
			});
			/* End Map Controls*
<pre>});</pre>
</pre>
</pre>
<p>That would be all:<br />
You can see the full working example on this page: <a href="http://e-maniacs.com/portfolio/boligrobotten/template2.html">Jquery map example</a><br />
For any questions, just drop me an message<br />
Thanks</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.e-maniacs.com/blog/2011/10/28/jquer-hover-map-tutorial/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Jquery radio buttons tutorial</title>
		<link>http://www.e-maniacs.com/blog/2011/10/20/jquery-radio-buttons-tutorial/</link>
		<comments>http://www.e-maniacs.com/blog/2011/10/20/jquery-radio-buttons-tutorial/#comments</comments>
		<pubDate>Thu, 20 Oct 2011 09:05:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Jquery]]></category>
		<category><![CDATA[jquery radio buttons]]></category>
		<category><![CDATA[jquery tutorial]]></category>
		<category><![CDATA[radio buttons]]></category>
		<category><![CDATA[tutorial jquery]]></category>

		<guid isPermaLink="false">http://www.e-maniacs.com/blog/?p=3098</guid>
		<description><![CDATA[Today i am going to show you how to create nice radio buttons using jquery; it is very easy to do it, just follow the next steps: 1) Import an version of jquery javascript file into your page; i use jquery-1.6.4.min.js; &#60;script src=&#8221;http://www.e-maniacs.com/boligrobotten/jquery/jquery-1.6.4.min.js&#8221; type=&#8221;text/javascript&#8221;&#62; 2) Create a nice image that hols both images for checked [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.e-maniacs.com%2Fblog%2F2011%2F10%2F20%2Fjquery-radio-buttons-tutorial%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.e-maniacs.com%2Fblog%2F2011%2F10%2F20%2Fjquery-radio-buttons-tutorial%2F&amp;source=emaniacs&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Today i am going to show you how to create nice radio buttons using jquery; it is very easy to do it, just follow the next steps:<br />
<script src="http://www.e-maniacs.com/boligrobotten/jquery/jquery-1.6.4.min.js" type="text/javascript"></script> <!-- .checkBox { 	background-position: 0px 0px; }  .checkBox, .checkBoxClear {     background-image: url('http://www.e-maniacs.com/boligrobotten/images/checkboxes.png');     background-repeat: no-repeat; 	 background-position: 0px 0px;     display: inline-block;     float: left;     width: 20px;     height: 20px;     padding: 0px;     margin: 0px;     cursor: hand; }  .checkBoxClear {     background-position: 0px -19px; } --> <strong>1) Import an version of jquery javascript file into your page; i use jquery-1.6.4.min.js; </strong><script src="http://www.e-maniacs.com/boligrobotten/jquery/jquery-1.6.4.min.js" type="text/javascript"></script></p>
<p class="standard">&lt;script src=&#8221;http://www.e-maniacs.com/boligrobotten/jquery/jquery-1.6.4.min.js&#8221; type=&#8221;text/javascript&#8221;&gt;</p>
<p class="standard"><strong>2) Create a nice image that hols both images for checked and not checked states for your radio buttons:</strong></p>
<p class="standard"><img class="alignnone" title="radio buttons" src="http://e-maniacs.com/boligrobotten/images/checkboxes.png" alt="" width="19" height="38" /></p>
<p class="standard"><span id="more-3098"></span></p>
<p class="standard"><strong>3) Create an style class for your radio button; we need to create classes for both states:</strong></p>
<pre id="line1">.checkBox {
	background-position: 0px 0px;
}

.checkBox, .checkBoxClear
{
    background-image: url('../images/checkboxes.png');
    background-repeat: no-repeat;
	 background-position: 0px 0px;
    display: inline-block;
    float: left;
    width: 20px;
    height: 20px;
    padding: 0px;
    margin: 0px;
    cursor: hand;
}

.checkBoxClear {
    background-position: 0px -19px;
}</pre>
<p class="standard">The whole idea is that we use the same image (is much quicker to load this way) and we set as background for our divs. The background position is computed the way that it shows the proper image according to the state.</p>
<p><strong>4) Create some javascript calls that will change the status of the radio button &#8211; this will change the style class for the clicked radio button.<br />
</strong></p>
<pre id="line1">$(".checkBox,.checkBoxClear").click(function(srcc) {
        if ($(this).hasClass("checkBox")) {
            $(this).removeClass("checkBox");
            $(this).addClass("checkBoxClear");
        }
        else {
            $(this).removeClass("checkBoxClear");
            $(this).addClass("checkBox");
        }</pre>
<p><strong>You can take a look and see them in action on this page, along with some other jquery controls:</strong></p>
<p><strong><a href="http://e-maniacs.com/boligrobotten/template2.html"><img class="aligncenter size-full wp-image-3110" title="radio_buttons" src="http://www.e-maniacs.com/blog/wp-content/uploads/2011/10/radio_buttons.jpg" alt="" width="530" height="173" /></a><br />
</strong></p>
<p><a href="http://e-maniacs.com/portfolio/boligrobotten/template2.html">http://e-maniacs.com/portfolio/boligrobotten/template2.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.e-maniacs.com/blog/2011/10/20/jquery-radio-buttons-tutorial/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WHS&#8217;s take on java script</title>
		<link>http://www.e-maniacs.com/blog/2010/09/23/webhostingsearch-com%e2%80%99s-take-on-top-10-javascript-a-must-for-your-site/</link>
		<comments>http://www.e-maniacs.com/blog/2010/09/23/webhostingsearch-com%e2%80%99s-take-on-top-10-javascript-a-must-for-your-site/#comments</comments>
		<pubDate>Thu, 23 Sep 2010 07:57:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://www.e-maniacs.com/blog/?p=2814</guid>
		<description><![CDATA[WebHostingSearch.com’s Take on Top 10 JavaScript &#8211; a must for your site Java Script is a popular programming language to add distinctive effects in one’s website. It is browser based, embedded through the site’s personal pages. Website hosts have distinctive scripts installed on their sites that can create different effects in the image, tables and [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.e-maniacs.com%2Fblog%2F2010%2F09%2F23%2Fwebhostingsearch-com%25e2%2580%2599s-take-on-top-10-javascript-a-must-for-your-site%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.e-maniacs.com%2Fblog%2F2010%2F09%2F23%2Fwebhostingsearch-com%25e2%2580%2599s-take-on-top-10-javascript-a-must-for-your-site%2F&amp;source=emaniacs&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><strong>WebHostingSearch.com’s Take on Top 10 JavaScript &#8211; a must for your site</strong></p>
<p>Java Script is a popular programming language to add distinctive effects in one’s website. It is browser based, embedded through the site’s personal pages. Website hosts have distinctive scripts installed on their sites that can create different effects in the image, tables and text. Java scripts are available in Java <a href="http://www.exohosting.com">hosting</a> servers but run independently from page to page as programmed.</p>
<p>A well-made site has a bigger chance to capture more audience and gain greater web traffic. These codes enhance the site designs; no matter how simple it is. Adding java scripts to one’s site is an easy task. Listed below are 10 recommended scripts that can be useful, as well as eye-catching for both the site owner and the visitor.</p>
<p><span id="more-2814"></span></p>
<p><strong>1. No-Right Click Java Script </strong></p>
<p>The no-right click java script is useful for those who want to avoid the information stated to be duplicated. It prohibits the mouse’s capability of right click, making the reader lose the cut and copy function of that page. This is particularly beneficial for those who wants their content to be read but avoids the possible reproduction of his material through copy.</p>
<p><strong>2. Counters </strong></p>
<p>For website owners who want to track down how many visitors are they gaining on their page, a counter is a must. Numbers in the counter add each time the page opens. Having a site counter can help the site owner to know his visitors. This script can also be constructive on the owner’s part, as it helps him develop ways to make his website more functional to gain more visit from Internet users.</p>
<p><strong>3. World Time</strong></p>
<p>The Internet has been a resource for many people all over the world, with users from every continent. It would be helpful then, to add something that would benefit all of these people in one spot. Having a world clock in the website would be an excellent add-on especially for people who are curious in knowing the time of a certain region. Just as the other Java Script types, this can be customized to a certain look to would appeal most when placed in the page.</p>
<p><strong>4. Animations</strong></p>
<p>Putting some eye-catching animations would gain interest from the readers. Graphics changing colors; text in rainbow; and mouse trailing images would be eye catching. There are many animation capabilities one can do when using Java Scripts codes, which he could liberally modify according to his wish.</p>
<p><strong>5. Image Rotation </strong></p>
<p>Having a gallery of images that can be switched on a glance is better than searching over thumbnails of pictures. An image rotation script brings a carousel like effect that shows the image displayed on a gallery, with the previous ones hinted at the back of the highlighted picture. It will be a terrific addition to portfolio sites, which showcases the pictures in the photo album capabilities.</p>
<p><strong>6. Special Navigation</strong></p>
<p>The Java Script allows the site to have a distinct navigation, which ranges from a drop-down menu, to embedding buttons. JavaScript’s also enables the images to be used as navigation, which can be altered upon mouse hover. Having a stimulating navigation design would be a terrific way to attract users.</p>
<p><strong>7. Colorful Scroll Bars</strong></p>
<p>Through JavaScript, one can change the standard grayish scroll bars into a multi-colored scroll that complements the current site design. These scroll bars can be fashioned inside the codes. One can choose the colors for the shadow, highlights, the base, even the arrows. A matching set of scroll bars that harmonizes with the design will complete the whole site’s appearance.</p>
<p><strong>8. Bookmarks</strong></p>
<p>Website owners like to have their pages remembered. Embedding a bookmark script on the site will give the user the chance to add the site to their favorites. This gives the site better chances of having regular visitors.</p>
<p><strong>9. Music Players</strong></p>
<p>Adding music and other forms of amusement can also be programmed through these simple codes. Audio players embedded on the site will make it more appealing to the reader.</p>
<p><strong>10. Password Protection</strong></p>
<p>For those who want to keep their content in private, they can use the scripts for password protection. These are message boxes that alert the user to enter a password for the private page. The user cannot read or enter the site unless they provide the correct password set by the owner.</p>
<p><a href="http://www.webhostingsearch.com/">Website hosts</a> can find many ways on how to use Java scripts to beautify <a href="http://www.hearthoroscopes.com">their</a> pages, making it an attraction to many readers. JavaScript is a powerful tool that can enhance the uses of a website. Sites under the <a href="http://www.webhostingsearch.com/jsp-web-hosting.php">Java hosting</a> servers get the best benefits using these codes. For more details, one can check out Webhostingsearch.com.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.e-maniacs.com/blog/2010/09/23/webhostingsearch-com%e2%80%99s-take-on-top-10-javascript-a-must-for-your-site/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Fingerprint vectors</title>
		<link>http://www.e-maniacs.com/blog/2008/11/10/fingerprint-vectors/</link>
		<comments>http://www.e-maniacs.com/blog/2008/11/10/fingerprint-vectors/#comments</comments>
		<pubDate>Mon, 10 Nov 2008 09:22:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Free Vector Graphics]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[fingerprints vectors]]></category>
		<category><![CDATA[free fingerprint vector]]></category>
		<category><![CDATA[free vectors]]></category>

		<guid isPermaLink="false">http://www.e-maniacs.com/blog/?p=1062</guid>
		<description><![CDATA[Inedite fingerprint vectors Download Vectors on gomediazine.com]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.e-maniacs.com%2Fblog%2F2008%2F11%2F10%2Ffingerprint-vectors%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.e-maniacs.com%2Fblog%2F2008%2F11%2F10%2Ffingerprint-vectors%2F&amp;source=emaniacs&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Inedite fingerprint vectors</p>
<p><img class="aligncenter size-full wp-image-1063" title="vector-freebie-preview2" src="http://www.e-maniacs.com/blog/wp-content/uploads/2008/11/vector-freebie-preview2.jpg" alt="" width="500" height="195" /></p>
<h2 style="text-align: center;"><a title="fingerprint vectors" href="http://www.filebox.ro/download.php?key=c0f8b8ton0wicia8" target="_blank">Download</a></h2>
<p><!--adsense--></p>
<p style="text-align: left;">Vectors on gomediazine.com</p>
]]></content:encoded>
			<wfw:commentRss>http://www.e-maniacs.com/blog/2008/11/10/fingerprint-vectors/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>T-shirt design</title>
		<link>http://www.e-maniacs.com/blog/2008/11/06/t-shirt-design/</link>
		<comments>http://www.e-maniacs.com/blog/2008/11/06/t-shirt-design/#comments</comments>
		<pubDate>Thu, 06 Nov 2008 18:07:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Templates]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[digital t-shirt]]></category>
		<category><![CDATA[free psd]]></category>
		<category><![CDATA[free t-shirt design]]></category>
		<category><![CDATA[free tee shirt]]></category>
		<category><![CDATA[t-shirt design]]></category>
		<category><![CDATA[t-shirt model]]></category>
		<category><![CDATA[t-shirt print]]></category>
		<category><![CDATA[tee shirt]]></category>

		<guid isPermaLink="false">http://www.e-maniacs.com/blog/?p=1025</guid>
		<description><![CDATA[For today i have prepared some nice t-shirt designs. THese designs are built inhouse, so, feedback is much appreciated as always. You can find and download for free also the psd files. Free download]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.e-maniacs.com%2Fblog%2F2008%2F11%2F06%2Ft-shirt-design%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.e-maniacs.com%2Fblog%2F2008%2F11%2F06%2Ft-shirt-design%2F&amp;source=emaniacs&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>For today i have prepared some nice t-shirt designs.</p>
<p>THese designs are built inhouse, so, feedback is much appreciated as always. You can find and <a href="http://www.filebox.ro/download.php?key=49lvb7y2zvhqy73a" target="_blank">download for free</a> also the psd files.</p>
<p style="text-align: center;"><a href="http://www.e-maniacs.com/blog/wp-content/uploads/2008/11/t-shirt1.jpg"><img class="size-full wp-image-1026 aligncenter" title="t-shirt1" src="http://www.e-maniacs.com/blog/wp-content/uploads/2008/11/t-shirt1.jpg" alt="" width="412" height="446" /></a></p>
<p style="text-align: center;"><a href="http://www.e-maniacs.com/blog/wp-content/uploads/2008/11/t-shirt2.jpg"><img class="size-full wp-image-1027 alignnone" title="t-shirt2" src="http://www.e-maniacs.com/blog/wp-content/uploads/2008/11/t-shirt2.jpg" alt="" width="412" height="446" /></a><br />
<span id="more-1025"></span><br />
<a href="http://www.e-maniacs.com/blog/wp-content/uploads/2008/11/t-shirt3.jpg"><img class="aligncenter size-full wp-image-1028" title="t-shirt3" src="http://www.e-maniacs.com/blog/wp-content/uploads/2008/11/t-shirt3.jpg" alt="" width="500" height="375" /></a></p>
<p style="text-align: center;"><a href="http://www.filebox.ro/download.php?key=49lvb7y2zvhqy73a" target="_blank">Free download</a><br />
<!--adsense--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.e-maniacs.com/blog/2008/11/06/t-shirt-design/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Free Icon set</title>
		<link>http://www.e-maniacs.com/blog/2008/10/02/free-icon-set/</link>
		<comments>http://www.e-maniacs.com/blog/2008/10/02/free-icon-set/#comments</comments>
		<pubDate>Thu, 02 Oct 2008 08:24:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Icons]]></category>
		<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[free icon set]]></category>
		<category><![CDATA[free icons]]></category>

		<guid isPermaLink="false">http://www.e-maniacs.com/blog/?p=482</guid>
		<description><![CDATA[Today Smashingmagazine release The DelliPack 2! icon set. This second set of “delicious icons” contains 15 icons: a build icon, a home icon, an interact icon, a monitor icon, a pen icon, a phonebook icon and other icons which can be useful for both corporate and personal projects. You can use the set for free [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.e-maniacs.com%2Fblog%2F2008%2F10%2F02%2Ffree-icon-set%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.e-maniacs.com%2Fblog%2F2008%2F10%2F02%2Ffree-icon-set%2F&amp;source=emaniacs&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Today <span style="color: #993300;"><a href="http://www.smashingmagazine.com" target="_blank">Smashingmagazine</a></span> release <strong>The DelliPack 2! icon set</strong>. This second set of “delicious icons” contains 15 icons: a build icon, a home icon, an interact icon, a monitor icon, a pen icon, a phonebook icon and other icons which can be useful for both corporate and personal projects. You can use the set for free — without any restrictions whatsoever.</p>
<p style="text-align: center;"><img class="size-full wp-image-483 aligncenter" title="smash_release2" src="http://www.e-maniacs.com/blog/wp-content/uploads/2008/10/smash_release2.jpg" alt="" width="500" height="500" /></p>
<p><span id="more-482"></span><br />
<!--adsense--><br />
Icons are available in the .png-format in the resolutions 256×256px, 128×128px, 64×64px, 48×48px, 32×32px and 16×16px.</p>
<p style="text-align: center;"><span style="color: #993300;"><a title="dellipack icons" href="http://88.198.60.17/images/dellipack2/dellipack2.zip" target="_blank">Download</a></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.e-maniacs.com/blog/2008/10/02/free-icon-set/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Leaf design &#8211; Photoshop</title>
		<link>http://www.e-maniacs.com/blog/2008/10/01/leaf-design-photoshop/</link>
		<comments>http://www.e-maniacs.com/blog/2008/10/01/leaf-design-photoshop/#comments</comments>
		<pubDate>Wed, 01 Oct 2008 21:29:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Templates]]></category>
		<category><![CDATA[leaf]]></category>
		<category><![CDATA[leaf design]]></category>
		<category><![CDATA[photoshop design]]></category>

		<guid isPermaLink="false">http://www.e-maniacs.com/blog/?p=472</guid>
		<description><![CDATA[I have created for you an digital leaf. It is created in Photoshop cs2. The leaf (jpg and psd files) can be downloaded from the kool downloads section, or simply from the link below. Soon i will publish an tutorial, explaining step by step how to create this leaf. Download]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.e-maniacs.com%2Fblog%2F2008%2F10%2F01%2Fleaf-design-photoshop%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.e-maniacs.com%2Fblog%2F2008%2F10%2F01%2Fleaf-design-photoshop%2F&amp;source=emaniacs&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>I have created for you an digital leaf. It is created in <span style="color: #993300;">Photoshop cs2</span>.</p>
<p style="text-align: center;"><img class="size-full wp-image-474 aligncenter" title="leaf2" src="http://www.e-maniacs.com/blog/wp-content/uploads/2008/10/leaf2.jpg" alt="" width="386" height="262" /></p>
<p>The leaf (jpg and psd files) can be downloaded from the <a title="kool downloads" href="http://www.e-maniacs.com/blog/kool-downloads/" target="_self">kool downloads</a> section, or simply from the link below.</p>
<p>Soon i will publish an tutorial, explaining step by step how to create this leaf.</p>
<p style="text-align: center;"><span style="text-decoration: underline;"><span style="color: #993300;"><a title="leaf download" href="http://www.e-maniacs.com/blog/wp-content/uploads/2008/10/leaf.rar" target="_blank">Download</a></span></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.e-maniacs.com/blog/2008/10/01/leaf-design-photoshop/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Top 10 inspiration designs</title>
		<link>http://www.e-maniacs.com/blog/2008/09/30/top-10-inspiration-designs/</link>
		<comments>http://www.e-maniacs.com/blog/2008/09/30/top-10-inspiration-designs/#comments</comments>
		<pubDate>Tue, 30 Sep 2008 10:13:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Templates]]></category>
		<category><![CDATA[inspiration design]]></category>
		<category><![CDATA[photoshop designs]]></category>

		<guid isPermaLink="false">http://www.e-maniacs.com/blog/?p=442</guid>
		<description><![CDATA[An nice collection of great designs created by aeriform]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.e-maniacs.com%2Fblog%2F2008%2F09%2F30%2Ftop-10-inspiration-designs%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.e-maniacs.com%2Fblog%2F2008%2F09%2F30%2Ftop-10-inspiration-designs%2F&amp;source=emaniacs&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>An nice collection of great designs created by <span style="color: #993300;"><a href="http://www.aeriform.co.uk/">aeriform</a></span><br />
<a href="http://www.e-maniacs.com/blog/wp-content/uploads/2008/09/ae_tour1.jpg"><img class="alignnone size-full wp-image-443" title="ae_tour1" src="http://www.e-maniacs.com/blog/wp-content/uploads/2008/09/ae_tour1.jpg" alt="" width="647" height="268" /></a><br />
<span id="more-442"></span><br />
<!--adsense--><br />
<a href="http://www.e-maniacs.com/blog/wp-content/uploads/2008/09/ae_rd21.jpg"><img class="alignnone size-full wp-image-444" title="ae_rd21" src="http://www.e-maniacs.com/blog/wp-content/uploads/2008/09/ae_rd21.jpg" alt="" width="692" height="321" /></a></p>
<p><a href="http://www.e-maniacs.com/blog/wp-content/uploads/2008/09/ae_bo1.jpg"><img class="alignnone size-full wp-image-445" title="ae_bo1" src="http://www.e-maniacs.com/blog/wp-content/uploads/2008/09/ae_bo1.jpg" alt="" width="690" height="312" /></a></p>
<p><a href="http://www.e-maniacs.com/blog/wp-content/uploads/2008/09/ae_bo3.jpg"><img class="alignnone size-full wp-image-446" title="ae_bo3" src="http://www.e-maniacs.com/blog/wp-content/uploads/2008/09/ae_bo3.jpg" alt="" width="684" height="348" /></a><br />
<!--adsense--><br />
<a href="http://www.e-maniacs.com/blog/wp-content/uploads/2008/09/ae_dv3.jpg"><img class="size-full wp-image-447 alignleft" title="ae_dv3" src="http://www.e-maniacs.com/blog/wp-content/uploads/2008/09/ae_dv3.jpg" alt="" width="314" height="480" /></a><a href="http://www.e-maniacs.com/blog/wp-content/uploads/2008/09/ae_dv4.jpg"><img class="alignnone size-full wp-image-448" title="ae_dv4" src="http://www.e-maniacs.com/blog/wp-content/uploads/2008/09/ae_dv4.jpg" alt="" width="318" height="479" /></a></p>
<p><a href="http://www.e-maniacs.com/blog/wp-content/uploads/2008/09/ae_dv5.jpg"><img class="size-full wp-image-449 alignleft" title="ae_dv5" src="http://www.e-maniacs.com/blog/wp-content/uploads/2008/09/ae_dv5.jpg" alt="" width="318" height="440" /></a></p>
<p><a href="http://www.e-maniacs.com/blog/wp-content/uploads/2008/09/ae_rd17.jpg"><img class="alignnone size-full wp-image-453" title="ae_rd17" src="http://www.e-maniacs.com/blog/wp-content/uploads/2008/09/ae_rd17.jpg" alt="" width="317" height="439" /></a></p>
<p><a href="http://www.e-maniacs.com/blog/wp-content/uploads/2008/09/ae_rd11.jpg"><img class="alignnone size-full wp-image-450" title="ae_rd11" src="http://www.e-maniacs.com/blog/wp-content/uploads/2008/09/ae_rd11.jpg" alt="" width="500" height="391" /></a><br />
<!--adsense--><br />
<a href="http://www.e-maniacs.com/blog/wp-content/uploads/2008/09/ae_rd12.jpg"><img class="alignnone size-full wp-image-452" title="ae_rd12" src="http://www.e-maniacs.com/blog/wp-content/uploads/2008/09/ae_rd12.jpg" alt="" width="500" height="437" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.e-maniacs.com/blog/2008/09/30/top-10-inspiration-designs/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Top 10 inspirational websites</title>
		<link>http://www.e-maniacs.com/blog/2008/09/24/top-10-inspirational-websites/</link>
		<comments>http://www.e-maniacs.com/blog/2008/09/24/top-10-inspirational-websites/#comments</comments>
		<pubDate>Wed, 24 Sep 2008 08:10:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[great designs]]></category>
		<category><![CDATA[Resources]]></category>

		<guid isPermaLink="false">http://www.e-maniacs.com/blog/?p=345</guid>
		<description><![CDATA[I have compiled specially for you a list with the most beautifull, and usefull inspiration sources: edpeixoto.com kriesi.at mkleyne.nl rustybones.net darkmotion.com tjmapes.com welovewp.com truebluetitan.com sr28.com outshouts.com]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.e-maniacs.com%2Fblog%2F2008%2F09%2F24%2Ftop-10-inspirational-websites%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.e-maniacs.com%2Fblog%2F2008%2F09%2F24%2Ftop-10-inspirational-websites%2F&amp;source=emaniacs&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>I have compiled specially for you a list with the most beautifull, and usefull inspiration sources:</p>
<h3>edpeixoto.com</h3>
<p><a href="http://edpeixoto.com/"><img class="alignnone size-full wp-image-347" title="edpeixoto" src="http://www.e-maniacs.com/blog/wp-content/uploads/2008/09/edpeixoto.jpg" alt="" width="430" height="323" /></a><br />
<span id="more-345"></span></p>
<h3>kriesi.at</h3>
<p><a href="http://www.kriesi.at/"><img class="alignnone size-full wp-image-348" title="kriesiat" src="http://www.e-maniacs.com/blog/wp-content/uploads/2008/09/kriesiat.jpg" alt="" width="430" height="323" /></a><br />
<!--adsense--></p>
<h3>mkleyne.nl</h3>
<p><a href="http://www.mkleyne.nl/"><img class="alignnone size-full wp-image-349" title="mkleynenl" src="http://www.e-maniacs.com/blog/wp-content/uploads/2008/09/mkleynenl.jpg" alt="" width="430" height="323" /></a></p>
<h3>rustybones.net</h3>
<p><a href="http://www.rustybones.net/"><img class="alignnone size-full wp-image-350" title="rustybonesnet" src="http://www.e-maniacs.com/blog/wp-content/uploads/2008/09/rustybonesnet.jpg" alt="" width="430" height="323" /></a></p>
<h3>darkmotion.com</h3>
<p><a href="http://darkmotion.com/"><img class="alignnone size-full wp-image-351" title="darkmotion" src="http://www.e-maniacs.com/blog/wp-content/uploads/2008/09/darkmotion.jpg" alt="" width="430" height="323" /></a></p>
<h3>tjmapes.com</h3>
<p><a href="http://tjmapes.com/"><img class="alignnone size-full wp-image-352" title="tjmapes" src="http://www.e-maniacs.com/blog/wp-content/uploads/2008/09/tjmapes.jpg" alt="" width="430" height="323" /></a></p>
<h3>welovewp.com</h3>
<p><a href="http://welovewp.com/"><img class="alignnone size-full wp-image-353" title="welovewp" src="http://www.e-maniacs.com/blog/wp-content/uploads/2008/09/welovewp.jpg" alt="" width="430" height="323" /></a></p>
<h3>truebluetitan.com</h3>
<p><a href="http://www.truebluetitan.com/"><img class="alignnone size-full wp-image-354" title="truebluetitan" src="http://www.e-maniacs.com/blog/wp-content/uploads/2008/09/truebluetitan.jpg" alt="" width="430" height="323" /></a></p>
<h3>sr28.com</h3>
<p><a href="http://sr28.com/"><img class="alignnone size-full wp-image-355" title="sr28" src="http://www.e-maniacs.com/blog/wp-content/uploads/2008/09/sr28.jpg" alt="" width="430" height="323" /></a></p>
<h3>outshouts.com</h3>
<p><a href="http://www.outshouts.com/"><img class="alignnone size-full wp-image-356" title="outshouts" src="http://www.e-maniacs.com/blog/wp-content/uploads/2008/09/outshouts.jpg" alt="" width="430" height="323" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.e-maniacs.com/blog/2008/09/24/top-10-inspirational-websites/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
	</channel>
</rss>