<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Lemonjuz</title>
	
	<link>http://www.lemonjuz.com</link>
	<description>Just another WordPress site</description>
	<lastBuildDate>Sun, 25 Sep 2011 02:06:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/lemonjuzComic" /><feedburner:info uri="lemonjuzcomic" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>lemonjuzComic</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>CakePHP Template Tutorial with 960 Grid System</title>
		<link>http://feedproxy.google.com/~r/lemonjuzComic/~3/zxypFYUSFqE/</link>
		<comments>http://www.lemonjuz.com/2011/09/cakephp-template-with-960-grid-system-tutorial/#comments</comments>
		<pubDate>Sun, 25 Sep 2011 01:56:59 +0000</pubDate>
		<dc:creator>Joanne Tjia</dc:creator>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[cakePHP]]></category>

		<guid isPermaLink="false">http://www.lemonjuz.com/?p=746</guid>
		<description><![CDATA[In this tutorial, I’m going to walk you through some steps of how to create a custom CakePHP template using 960 Grid System. I have provided some links to download the files required for this tutorial. You can reuse or &#8230; <a href="http://www.lemonjuz.com/2011/09/cakephp-template-with-960-grid-system-tutorial/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-top: 5px; margin-left: 10px; margin-right: -90px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.lemonjuz.com%2F2011%2F09%2Fcakephp-template-with-960-grid-system-tutorial%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.lemonjuz.com%2F2011%2F09%2Fcakephp-template-with-960-grid-system-tutorial%2F&amp;source=lemonjuz&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>In this tutorial, I’m going to walk you through some steps of how to create a custom CakePHP template using <a href="http://960.gs" target="_blank">960 Grid System</a>. I have provided some links to download the files required for this tutorial. You can reuse or modify this template, but please link back to lemonjuz.com <img src='http://www.lemonjuz.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><span id="more-746"></span></p>
<h2>Final Result</h2>
<p><a href="http://www.lemonjuz.com/wp-content/uploads/2011/09/final.png"><img class="aligncenter size-full wp-image-736" title="Final Result CakePHP 960gs template" src="http://www.lemonjuz.com/wp-content/uploads/2011/09/final.png" alt="Final Result CakePHP 960gs template" width="500" height="557" /></a></p>
<h2>Step 1 – Setting Up new CakePHP Application</h2>
<p>Copy your CakePHP folder to HTDOCS folder on XAMPP for Windows or  MAMP for MacOS.</p>
<p>Do the new application configuration routines</p>
<p>1.Rename your application root folder to “blogging”<br />
2.Change the Security.salt and Security.chiperSeed at app/config/core.php<br />
3.Go to app/config/database.php.default, and rename the file to database.php.<br />
4.Change the database configuration at database.php</p>
<p>Open your browser and type in<strong> “http://localhost/blogging&#8221;</strong> to the configuration.</p>
<h2>Step 2 – Create your database and tables</h2>
<p>In order to see the template works, you need some dummy data in your database. In your PHPMyAdmin, create a database and then execute these SQl queries for creating the tables. Because this is a template for a simple blogging application, then we need tables for Posts and Users.</p>
<h3>CREATE TABLE `posts` (<br />
`id` int(11) unsigned NOT NULL auto_increment,<br />
`name` varchar(255) default NULL,<br />
`date` datetime default NULL,<br />
`content` text,<br />
`user_id` int(11) default NULL,<br />
`image` varchar(255) default NULL,<br />
PRIMARY KEY  (`id`)<br />
);<br />
CREATE TABLE `users` (<br />
`id` int(11) unsigned NOT NULL auto_increment,<br />
`name` varchar(100) default NULL,<br />
`email` varchar(150) default NULL,<br />
`firstname` varchar(60) default NULL,<br />
`lastname` varchar(60) default NULL,<br />
PRIMARY KEY  (`id`)<br />
);</h3>
<p>Now  insert some dummy data to your tables. Please use 2-3 paragraphs for &#8216;content&#8217; field to see the truncate helper works.</p>
<h2>Step 3. – It’s time to bake !!</h2>
<p>For MacOS, open your terminal and create some alias for your Cake commands to work specifically for your “blogging” app.</p>
<h3>alias cake=&#8217;php /Applications/MAMP/htdocs/blogging/cake/console/cake.php&#8217;</h3>
<p>Next, you can run the cake bake command to bake the MVC for your app.</p>
<p>For Windows, the first thing you need to do is change some settings at <strong>My Computer &gt; Properties &gt; Advanced &gt; Environment Variables &gt; Path</strong>. Click edit on the path and add :</p>
<h3>C:\xampp\htdocs\blogging\cake\console;C:\xampp\php</h3>
<p>Run the Command Prompt, and go to your application folder.</p>
<h3>cd C:\xampp\htdocs\blogging\app</h3>
<p>Next, you can bake the MVC for your app.</p>
<h2>Step 4. – Customize the default view</h2>
<p>Go to <strong>app/views/layouts</strong>, and create a file named <strong>“default.ctp”</strong>, and type this HTML code:</p>
<h3>&lt;!DOCTYPE&gt;<br />
&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;meta http-equiv=&#8221;Content-Type&#8221; content=&#8221;text/html; charset=UTF-8&#8243; /&gt;<br />
&lt;?=$html-&gt;css(&#8217;960.css&#8217;);?&gt;<br />
&lt;?=$html-&gt;css(&#8216;reset.css&#8217;);?&gt;<br />
&lt;?=$html-&gt;css(&#8216;text.css&#8217;);?&gt;<br />
&lt;?=$html-&gt;css(&#8216;style.css&#8217;);?&gt;<br />
&lt;title&gt;My Journey&lt;/title&gt;<br />
&lt;/head&gt;<br />
&lt;?=$content_for_layout;?&gt;<br />
&lt;/html&gt;</h3>
<h2>Step 5. – Add some CSS styling with 960 Grid Systems</h2>
<p>First you need to download the CSS files required for this tutorial here:</p>
<p>-       <a href="http://lemonjuz.com/tutorial/cakephp/960.css">960.css</a></p>
<p>-      <a href="http://lemonjuz.com/tutorial/cakephp/reset.css"> reset.css</a></p>
<p>-       <a href="http://lemonjuz.com/tutorial/cakephp/style.css">style.css</a></p>
<p>-      <a href="http://lemonjuz.com/tutorial/cakephp/text.css"> text.css</a></p>
<p>Go to <strong>app/webroot/css</strong>, and put those CSS files there</p>
<h2>Step 6. Add some images</h2>
<p>Download all the images required for this tutorial here:</p>
<p><a href="http://lemonjuz.com/tutorial/cakephp/img.zip">img.zip</a></p>
<p>Go to <strong>app/webroot/img</strong>, and put all the images there.</p>
<h2>Step 7. Customize the index.ctp for viewing the Posts content</h2>
<p>Download the index.ctp file here:</p>
<p><a href="http://lemonjuz.com/tutorial/cakephp/index.ctp">index.ctp</a></p>
<p>Go to <strong>app/views/posts/</strong>. Delete the index.ctp file, and replace it with the one you just downloaded.</p>
<h2>Step 8. Put helpers to truncate the text</h2>
<p>I uses truncate helper from <a href="http://xpnce.com/?p=45" target="_blank">http://xpnce.com/?p=45</a>. Download the truncate.php here:</p>
<p><a href="http://lemonjuz.com/tutorial/cakephp/truncate.php">truncate.php</a></p>
<p>Go to <strong>app/views/helpers/</strong> and put the truncate.php. If you find a file called ‘empty’ then delete it.</p>
<h2>Step 9. Customize the posts_controller.php</h2>
<p>Open the post_controller.php, you can find it at <strong>app/controllers</strong></p>
<p>Put this line of code at the ‘var’ section:</p>
<h3>var $helpers = array(&#8216;Truncate&#8217;);</h3>
<h2>Step 10. Test the app</h2>
<p>On your browser, type <strong>“http://localhost/blogging/posts&#8221;</strong></p>
<p>You should see the template works.</p>
<p><strong>Enjoy !</strong></p>
 <img src="http://www.lemonjuz.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=746" width="1" height="1" style="display: none;" /><p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.lemonjuz.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.lemonjuz.com/2011/09/cakephp-template-with-960-grid-system-tutorial/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.lemonjuz.com/2011/09/cakephp-template-with-960-grid-system-tutorial/</feedburner:origLink></item>
		<item>
		<title>Easy ActionScript 3.0 Flash Buttons Tutorial</title>
		<link>http://feedproxy.google.com/~r/lemonjuzComic/~3/ouiFIqAqPWA/</link>
		<comments>http://www.lemonjuz.com/2011/09/easy-actionscript-3-0-flash-buttons-tutorial/#comments</comments>
		<pubDate>Tue, 20 Sep 2011 17:05:30 +0000</pubDate>
		<dc:creator>Joanne Tjia</dc:creator>
				<category><![CDATA[ActionScript 3]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://www.lemonjuz.com/?p=712</guid>
		<description><![CDATA[In this tutorial, I’m going to show you how easy it is to create Flash buttons using Adobe Flash CS4 and ActionScript 3.0. Final Results Click on the following image to see a working demo. (Try to navigate between page &#8230; <a href="http://www.lemonjuz.com/2011/09/easy-actionscript-3-0-flash-buttons-tutorial/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-top: 5px; margin-left: 10px; margin-right: -90px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.lemonjuz.com%2F2011%2F09%2Feasy-actionscript-3-0-flash-buttons-tutorial%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.lemonjuz.com%2F2011%2F09%2Feasy-actionscript-3-0-flash-buttons-tutorial%2F&amp;source=lemonjuz&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>In this tutorial, I’m going to show you how easy it is to create Flash buttons using Adobe Flash CS4 and ActionScript 3.0.<br />
<span id="more-712"></span></p>
<h2>Final Results</h2>
<p>Click on the following image to see a working demo. (Try to navigate between page 1 and page 2)</p>
<p><a href="http://www.lemonjuz.com/tutorial/flash_button_tutorial.swf"><img class="aligncenter size-full wp-image-713" title="Easy ActionScript 3.0 Flash Button Tutorial" src="http://www.lemonjuz.com/wp-content/uploads/2011/09/12.png" alt="Easy ActionScript 3.0 Flash Button Tutorial" width="500" height="300" /></a></p>
<p>This is the source code file, feel free to download and use it.</p>
<p><a href="http://lemonjuz.com/tutorial/flash_button_tutorial.fla"><strong>flash_button_tutorial.fla</strong></a></p>
<p>Before we start the tutorial,  I would like to give credit to <a href="http://sixrevisions.com/tutorials/photoshop-tutorials/how-to-create-a-slick-and-clean-button-in-photoshop/">Jacob Gube</a> from Sixrevisions.com for the clean and slick button that I used for this tutorial.</p>
<h2>Step 1. Create a new Flash ActionScript 3.0 document</h2>
<p><a href="http://www.lemonjuz.com/wp-content/uploads/2011/09/13.png"><img class="aligncenter size-full wp-image-714" title="Step 1. Create a new Flash ActionScript 3.0 document" src="http://www.lemonjuz.com/wp-content/uploads/2011/09/13.png" alt="Step 1. Create a new Flash ActionScript 3.0 document" width="500" height="200" /></a></p>
<h2>Step 2. Setting up your document</h2>
<p>Open menu MODIFY &gt; PAGE PROPERTIES</p>
<p><a href="http://www.lemonjuz.com/wp-content/uploads/2011/09/21.png"><img class="aligncenter size-full wp-image-715" title="Step 2. Setting up your document" src="http://www.lemonjuz.com/wp-content/uploads/2011/09/21.png" alt="Step 2. Setting up your document" width="500" height="258" /></a></p>
<h2>Step 3.  Create 3 layers on the main timeline</h2>
<p>You need 3 layers, which are ‘texts’, ‘buttons’, and ‘scripts’. Create keyframes on all layers and frames.</p>
<p><a href="http://www.lemonjuz.com/wp-content/uploads/2011/09/31.png"><img class="aligncenter size-full wp-image-716" title="Step 3.  Create 3 layers on the main timeline" src="http://www.lemonjuz.com/wp-content/uploads/2011/09/31.png" alt="Step 3.  Create 3 layers on the main timeline" width="500" height="125" /></a></p>
<h2>Step 4.  Create 2 pages  with texts</h2>
<p>Go to layer ‘texts’ and go to keyframe 1, type “This is page 1”.</p>
<p>Next go to keyframe 2, type “This is page 2”.</p>
<p><a href="http://www.lemonjuz.com/wp-content/uploads/2011/09/41.png"><img class="aligncenter size-full wp-image-717" title="Step 4.  Create 2 pages with texts" src="http://www.lemonjuz.com/wp-content/uploads/2011/09/41.png" alt="Step 4.  Create 2 pages with texts" width="500" height="308" /></a></p>
<h2>Step 5. Import buttons</h2>
<p>Go to layer ‘buttons’, put your mouse at keyframe 1 and import the button “GO TO PAGE 2”. The next step is to go to keyframe 2, and import the button “GO TO PAGE 1”.</p>
<div id="attachment_718" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.lemonjuz.com/wp-content/uploads/2011/09/51.png"><img class="size-full wp-image-718" title="Step 5. Import buttons" src="http://www.lemonjuz.com/wp-content/uploads/2011/09/51.png" alt="Step 5. Import buttons" width="500" height="371" /></a><p class="wp-caption-text">Import buttons</p></div>
<div id="attachment_719" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.lemonjuz.com/wp-content/uploads/2011/09/61.png"><img class="size-full wp-image-719" title="Put button &quot;GO TO PAGE 2&quot; on page 1" src="http://www.lemonjuz.com/wp-content/uploads/2011/09/61.png" alt="Put button &quot;GO TO PAGE 2&quot; on page 1" width="500" height="341" /></a><p class="wp-caption-text">Put button &quot;GO TO PAGE 2&quot; on page 1</p></div>
<h2>Step 6. Create button symbols.</h2>
<p>Click on button “GO TO PAGE 2”, and then press “F8” or go to MODIFY &gt; CONVERT TO SYMBOL. Select button symbol and give the button a name. Do the same for button “GO TO PAGE 1”</p>
<div id="attachment_720" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.lemonjuz.com/wp-content/uploads/2011/09/71.png"><img class="size-full wp-image-720" title="Convert to a button symbol" src="http://www.lemonjuz.com/wp-content/uploads/2011/09/71.png" alt="Convert to a button symbol" width="500" height="300" /></a><p class="wp-caption-text">Convert to a button symbol</p></div>
<div id="attachment_721" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.lemonjuz.com/wp-content/uploads/2011/09/81.png"><img class="size-full wp-image-721" title="Button Symbol" src="http://www.lemonjuz.com/wp-content/uploads/2011/09/81.png" alt="Button Symbol" width="500" height="230" /></a><p class="wp-caption-text">Button Symbol</p></div>
<h2>Step 7. Give instance names to the buttons</h2>
<p>Click on button “GO TO PAGE 2”, and then go to WINDOW&gt;PROPERTIES and give it an instance name “bt_p2”. Do the same for button “GO TO PAGE 1”, but give it an instance name “bt_p1”.</p>
<p><a href="http://www.lemonjuz.com/wp-content/uploads/2011/09/91.png"><img class="aligncenter size-full wp-image-722" title="Instance Names" src="http://www.lemonjuz.com/wp-content/uploads/2011/09/91.png" alt="Instance Names" width="500" height="292" /></a></p>
<p><strong>Step 8. ActionScript 3.0 to make the buttons work.</strong></p>
<p>Go to layer “scripts”, and go to the first keyframe, right click and select ACTIONS. The ACTIONS window will be open, and type the code below:</p>
<h3>stop();<br />
bt_p2.addEventListener(MouseEvent.MOUSE_DOWN, gotoPageTwo);<br />
function gotoPageTwo(event:MouseEvent):void<br />
{gotoAndStop(2);}<br />
function gotoPageOne(event:MouseEvent):void<br />
{gotoAndStop(1);}</h3>
<div id="attachment_723" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.lemonjuz.com/wp-content/uploads/2011/09/101.png"><img class="size-full wp-image-723" title="ActionScript for keyframe 1 " src="http://www.lemonjuz.com/wp-content/uploads/2011/09/101.png" alt="ActionScript for keyframe 1 " width="500" height="216" /></a><p class="wp-caption-text">ActionScript for keyframe 1 </p></div>
<p>After finished on the first keyframe, we should give the second keyframe on layer “script” a listening event for button “GO TO PAGE 2”.</p>
<h3>bt_p1.addEventListener(MouseEvent.MOUSE_DOWN, gotoPageOne);</h3>
 <img src="http://www.lemonjuz.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=712" width="1" height="1" style="display: none;" /><p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.lemonjuz.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.lemonjuz.com/2011/09/easy-actionscript-3-0-flash-buttons-tutorial/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.lemonjuz.com/2011/09/easy-actionscript-3-0-flash-buttons-tutorial/</feedburner:origLink></item>
		<item>
		<title>11 Free PSD Buttons and Icons for Your Design</title>
		<link>http://feedproxy.google.com/~r/lemonjuzComic/~3/P4zUY5ir8tQ/</link>
		<comments>http://www.lemonjuz.com/2011/09/11-free-psd-buttons-and-icons-for-your-design/#comments</comments>
		<pubDate>Tue, 20 Sep 2011 14:26:31 +0000</pubDate>
		<dc:creator>Joanne Tjia</dc:creator>
				<category><![CDATA[Buttons & Icons]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://www.lemonjuz.com/?p=692</guid>
		<description><![CDATA[Thanks to all artists who created these fantastic free PSD buttons and icons !! I found these PSD buttons and icons that you could download, modify and use it in your design. However, please remember that some of them are &#8230; <a href="http://www.lemonjuz.com/2011/09/11-free-psd-buttons-and-icons-for-your-design/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-top: 5px; margin-left: 10px; margin-right: -90px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.lemonjuz.com%2F2011%2F09%2F11-free-psd-buttons-and-icons-for-your-design%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.lemonjuz.com%2F2011%2F09%2F11-free-psd-buttons-and-icons-for-your-design%2F&amp;source=lemonjuz&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>Thanks to all artists who created these fantastic free PSD buttons and icons !! I found these PSD buttons and icons that you could download, modify and use it in your design. However, please remember that some of them are under the <a href="http://creativecommons.org/" target="_blank">Creative Commons License</a>.</p>
<p><span id="more-692"></span></p>
<h2>1. Glossy eCommerce Icons: 32 Free Icons</h2>
<p><a href="http://yensdesign.com/2009/01/glossy-ecommerce-icons-32-free-icons/"><img class="aligncenter size-full wp-image-693" title="Glossy eCommerce Icons: 32 Free Icons" src="http://www.lemonjuz.com/wp-content/uploads/2011/09/1.png" alt="Glossy eCommerce Icons: 32 Free Icons" width="500" height="200" /></a></p>
<h2>2. Knob Buttons Toolbar Icons</h2>
<p><a href="http://itweek.deviantart.com/art/Knob-Buttons-Toolbar-icons-73463960"><img class="aligncenter size-full wp-image-694" title="Knob Buttons Toolbar Icons" src="http://www.lemonjuz.com/wp-content/uploads/2011/09/2.png" alt="Knob Buttons Toolbar Icons" width="500" height="200" /></a></p>
<h2>3. Glyphish Icons for Mobile App</h2>
<p><a href="http://glyphish.com/"><img class="aligncenter size-full wp-image-695" title="Glyphish Icons for Mobile App" src="http://www.lemonjuz.com/wp-content/uploads/2011/09/3.png" alt="Glyphish Icons for Mobile App" width="500" height="200" /></a></p>
<h2>4. &#8216;Slash &amp; Flash&#8217; Buttons</h2>
<p><a href="http://el3ment4l.deviantart.com/art/Buttons-PSD-71698930"><img class="aligncenter size-full wp-image-696" title="'Slash &amp; Flash' Buttons" src="http://www.lemonjuz.com/wp-content/uploads/2011/09/4.png" alt="'Slash &amp; Flash' Buttons" width="500" height="200" /></a></p>
<h2>5. Glossy Buttons</h2>
<p><a href="http://annatreter.deviantart.com/art/Glossy-Buttons-113339785"><img class="aligncenter size-full wp-image-697" title="Glossy Buttons" src="http://www.lemonjuz.com/wp-content/uploads/2011/09/5.png" alt="Glossy Buttons" width="500" height="200" /></a></p>
<h2>6. Different Buttons Set</h2>
<p><a href="http://annatreter.deviantart.com/art/Different-Buttons-Set-113416295"><img class="aligncenter size-full wp-image-698" title="Different Buttons Set" src="http://www.lemonjuz.com/wp-content/uploads/2011/09/6.png" alt="Different Buttons Set" width="500" height="200" /></a></p>
<h2>7. Back &amp; Forward Icons</h2>
<p><a href="http://www.psdgraphics.com/icons/back-and-forward-icons/"><img class="aligncenter size-full wp-image-699" title=" Back &amp; Forward Icons" src="http://www.lemonjuz.com/wp-content/uploads/2011/09/7.png" alt=" Back &amp; Forward Icons" width="500" height="200" /></a></p>
<h2>8.Grey Buttons</h2>
<p><a href="http://365psd.com/day/139/"><img class="aligncenter size-full wp-image-700" title="Grey Buttons" src="http://www.lemonjuz.com/wp-content/uploads/2011/09/8.png" alt="Grey Buttons" width="500" height="200" /></a></p>
<h2>9. Switch Buttons</h2>
<p><a href="http://365psd.com/day/130/"><img class="aligncenter size-full wp-image-701" title="Switch Buttons" src="http://www.lemonjuz.com/wp-content/uploads/2011/09/9.png" alt="Switch Buttons" width="500" height="200" /></a></p>
<h2>10. Glossy Icons Pack</h2>
<p><a href="http://psdho.me/icons/glossy-icons-pack-psd-file.html"><img class="aligncenter size-full wp-image-702" title=" Glossy Icons Pack" src="http://www.lemonjuz.com/wp-content/uploads/2011/09/10.png" alt=" Glossy Icons Pack" width="500" height="200" /></a></p>
<h2>11. iPhone Style Buttons Modified</h2>
<p><a href="http://xlphs.deviantart.com/art/iPhone-Style-Buttons-Modified-50780303"><img class="aligncenter size-full wp-image-703" title="iPhone Style Buttons Modified" src="http://www.lemonjuz.com/wp-content/uploads/2011/09/11.png" alt="iPhone Style Buttons Modified" width="500" height="200" /></a></p>
 <img src="http://www.lemonjuz.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=692" width="1" height="1" style="display: none;" /><p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.lemonjuz.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.lemonjuz.com/2011/09/11-free-psd-buttons-and-icons-for-your-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.lemonjuz.com/2011/09/11-free-psd-buttons-and-icons-for-your-design/</feedburner:origLink></item>
	</channel>
</rss>

