<?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>JasonCypret.com &#187; javascript</title>
	<atom:link href="http://jasoncypret.com/tag/javascript/feed/" rel="self" type="application/rss+xml" />
	<link>http://jasoncypret.com</link>
	<description>I am a designer, developer, photographer, and filmmaker based in Dallas, Texas. I create clean websites that get noticed!</description>
	<lastBuildDate>Sat, 19 May 2012 18:38:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>jQuery MagicLine Navigation</title>
		<link>http://jasoncypret.com/jquery-magicline-navigation/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=jquery-magicline-navigation</link>
		<comments>http://jasoncypret.com/jquery-magicline-navigation/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 15:47:03 +0000</pubDate>
		<dc:creator>Jason Cypret</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Link]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://jasoncypret.com/?p=1794</guid>
		<description><![CDATA[<p>Posted in <a href="http://jasoncypret.com/category/development/" title="Development">Development</a><a href="http://jasoncypret.com/category/link/" title="Link">Link</a></p><p>Chris Coyer &#8220;da css man&#8221; wrote a great post over the moving line navigation. Hey guess what? I use something very simulator on my site except I opted for a static width of the highlight. Anyway it&#8217;s a pretty sweet and very easy to understand.

$(function(){
    var $el, leftPos, newWidth,
     ... <a href="http://jasoncypret.com/jquery-magicline-navigation/">Read more</a>]]></description>
			<content:encoded><![CDATA[<p>Posted in <a href="http://jasoncypret.com/category/development/" title="Development">Development</a><a href="http://jasoncypret.com/category/link/" title="Link">Link</a></p><p>Chris Coyer &#8220;da css man&#8221; wrote a great post over the moving line navigation. Hey guess what? I use something very simulator on my site except I opted for a static width of the highlight. Anyway it&#8217;s a pretty sweet and very easy to understand.<br />
<code><br />
$(function(){<br />
    var $el, leftPos, newWidth,<br />
        $mainNav = $(&quot;#example-one&quot;),<br />
        pageOffset = $mainNav.offset().left;</p>
<p>    // Fixing the offset if the window changes size<br />
    $(window).resize(function() {<br />
        pageOffset = $mainNav.offset().left;<br />
    });</p>
<p>    $mainNav.append(&quot;&lt;li id=&#039;magic-line&#039;&gt;&lt;/li&gt;&quot;);<br />
    var $magicLine = $(&quot;#magic-line&quot;);</p>
<p>    $magicLine<br />
        .width($(&quot;.current_page_item&quot;).width())<br />
        .css(&quot;left&quot;, $(&quot;.current_page_item a&quot;).offset().left - pageOffset)<br />
        .data(&quot;origLeft&quot;, $magicLine.offset().left - pageOffset)<br />
        .data(&quot;origWidth&quot;, $magicLine.width());</p>
<p>    $(&quot;#example-one li&quot;).find(&quot;a&quot;).hover(function() {<br />
        $el = $(this);<br />
        leftPos = $el.offset().left - pageOffset;<br />
        newWidth = $el.parent().width();<br />
        $magicLine.stop().animate({<br />
            left: leftPos,<br />
            width: newWidth<br />
        });<br />
    }, function() {<br />
        $magicLine.stop().animate({<br />
            left: $magicLine.data(&quot;origLeft&quot;),<br />
            width: $magicLine.data(&quot;origWidth&quot;)<br />
        });<br />
    });<br />
});<br />
</code></p>
<p>Check the demo out at <a href="http://css-tricks.com/jquery-magicline-navigation/">CSSTricks</a></p>
]]></content:encoded>
			<wfw:commentRss></wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Geek Week &#8211; jQuery, PHP, WordPress, Design, CSS</title>
		<link>http://jasoncypret.com/geek-week-jquery-php-wordpress-design-css/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=geek-week-jquery-php-wordpress-design-css</link>
		<comments>http://jasoncypret.com/geek-week-jquery-php-wordpress-design-css/#comments</comments>
		<pubDate>Thu, 05 Feb 2009 18:44:26 +0000</pubDate>
		<dc:creator>Jason Cypret</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[graphic design]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[web 2.0]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[XHTML]]></category>

		<guid isPermaLink="false">http://jasoncypret.com/?p=589</guid>
		<description><![CDATA[<p>Posted in <a href="http://jasoncypret.com/category/development/" title="Development">Development</a><a href="http://jasoncypret.com/category/web-design/" title="Web Design">Web Design</a></p><p></p>
<p>I&#8217;m coming off my long hiatus since, well Christmas.  I’ve been crazy busy lately, but I have recently been able to catch my breath and check out some great tutorials, blogs, and design inspiration found all around the interwebs.</p>
jQuery
<p>I&#8217;ve got a lot of jQuery links for ya. I&#8217;ve been doing quite a bit of  ... <a href="http://jasoncypret.com/geek-week-jquery-php-wordpress-design-css/">Read more</a>]]></description>
			<content:encoded><![CDATA[<p>Posted in <a href="http://jasoncypret.com/category/development/" title="Development">Development</a><a href="http://jasoncypret.com/category/web-design/" title="Web Design">Web Design</a></p><p><img src="http://jasoncypret.com/wp-content/uploads/2008/11/jquery-links.jpg" alt="jquery" /></p>
<p>I&#8217;m coming off my long hiatus since, well Christmas.  I’ve been crazy busy lately, but I have recently been able to catch my breath and check out some great tutorials, blogs, and design inspiration found all around the interwebs.</p>
<h4>jQuery</h4>
<p>I&#8217;ve got a lot of jQuery links for ya. I&#8217;ve been doing quite a bit of jQuery work lately.</p>
<ul>
<li><a href="http://blog.brenelz.com/2009/01/31/animate-text-with-jquery-easing-screencast/">Animate Text with jQuery Easing</a> </li>
<li><a href="http://nettuts.com/tutorials/javascript-ajax/creating-a-filterable-portfolio-with-jquery/">Creating a “Filterable” Portfolio with jQuery</a> </li>
<li><a href="http://www.marcofolio.net/webdesign/the_iphone_unlock_screen_in_xhtml_css_and_jquery.html">Creating the iPhone unlock screen using xHTML, CSS and jQuery</a> </li>
<li><a href="http://css-tricks.com/the-iphone-springboard-in-xhtml-css-and-jquery/">The iPhone Springboard in XHTML, CSS and jQuery</a> </li>
<li><a href="http://trevordavis.net/blog/tutorial/use-jquery-to-enhance-your-wordpress-comment-form/">Use jQuery to Enhance your WordPress Comment Form</a></li>
<li><a href="http://buildinternet.com/2009/01/changing-form-input-styles-on-focus-with-jquery/">Changing Form Input Styles on Focus with jQuery</a> </li>
<li><a href="http://www.kriesi.at/archives/apple-menu-improved-with-jquery">Create an apple style menu and improve it via jQuery</a> </li>
<li> <a href="http://css-tricks.com/color-fading-menu-with-jquery/">Color Fading Menu with jQuery</a> </li>
<li><a href="http://www.thatagency.com/design-studio-blog/2009/01/refreshing-an-element-at-a-set-time-interval-using-jquery-and-a-sprinkle-of-ajax/">Refreshing an element at intervals using jQuery and Ajax</a></li>
<li> <a href="http://flowplayer.org/tools/scrollable.html">Scroll your HTML with jquery scrollable</a></li>
<li> <a href="http://www.ezjquery.com/cgi-bin/webapp.rb?r=list&#038;stype=jst&#038;lid=1210862049#displaycc">Browser detect with jQuery</a></li>
</ul>
<h4>CSS &amp; XHTML</h4>
<p>Here&#8217;s some fun and usefull CSS tuts, and tricks.</p>
<ul>
<li><a href="http://blog.adamoliver.net/tutorials/cross-browser-transparent-div-with-opaque-content/">Cross Browser Transparent Div With Opaque Content</a> </li>
<li><a href="http://nettuts.com/videos/screencasts/a-detailed-look-at-the-960-css-framework/">A Detailed Look at the 960 CSS Framework</a> </li>
<li><a href="http://css-tricks.com/rgba-browser-support/">RGBa Browser Support</a> </li>
<li><a href="http://blog.brenelz.com/2009/01/27/png-8-alpha-transparency-screencast/">PNG-8 Alpha Transparency &#8211; Works in IE6+</a> </li>
<li><a href="http://css-tricks.com/new-screencast-building-a-print-stylesheet/">New Screencast: Building a Print Stylesheet</a></li>
<li> <a href="http://www.typechart.com/">Typechart &#8211; Browse Web Type, Grab CSS.</a></li>
</ul>
<h4>PHP</h4>
<p>Roll your own MySQL and PHP powered CMS.</p>
<ul>
<li><a href="http://nettuts.com/articles/are-you-making-these-10-php-mistakes/">Are You Making These 10 PHP Mistakes</a> </li>
<li><a href="http://css-tricks.com/php-for-beginners-building-your-first-simple-cms/">PHP for Beginners: Building Your First Simple CMS</a> </li>
</ul>
<h4>WordPress</h4>
<p>More wordpress tidbits to improve yoru wordpress site.</p>
<ul>
<li><a href="http://www.smashingmagazine.com/2009/02/02/mastering-wordpress-shortcodes/">Mastering WordPress Shortcodes</a> </li>
<li><a href="http://www.earnersblog.com/digproof-your-wordpress/">Speed up WordPress</a> </li>
<li><a href="http://www.smashingmagazine.com/2009/01/26/10-steps-to-protect-the-admin-area-in-wordpress/">10 Steps To Protect The Admin Area In WordPress</a> </li>
<li><a href="http://nettuts.com/articles/general/15-tips-to-speed-up-your-website-and-optimize-your-code/">Tips to Speed Up Your Website</a> </li>
<li><a href="http://wpengineer.com/add-avatar-to-wordpress-default/">Add Avatar To WordPress Default</a> </li>
<li><a href="http://designm.ag/tutorials/wordpress-caption/">How to Easily Customize the WordPress Image Caption</a> </li>
</ul>
<h4>Design</h4>
<p>I&#8217;ve been doing a good amout of vector work lately. Check out these great tuts.</p>
<ul>
<li><a href="http://www.crestock.com/blog/photoshop/photoshop-tutorial-constructivist-propaganda-poster-159.aspx">Constructivist Propaganda Poster</a> </li>
<li><a href="http://psdtuts.com/articles/inspiration/40-mind-blowing-digital-space-paintings/">40 Mind-blowing Digital Space Paintings</a> </li>
<li><a href="http://vectortuts.com/tutorials/illustration/craft-a-vector-collegiate-notebook-design/">Craft a Vector Collegiate Notebook Design</a> </li>
<li><a href="http://pshero.com/archives/a-scrap-of-notebook-paper">A Scrap Of Notebook Paper</a> </li>
<li><a href="http://designm.ag/inspiration/textured-websites/">40 Textured Websites for Design Inspiration</a> </li>
<li><a title="120 Excellent Examples of CSS Horizantal Menu" href="http://www.csstea.com/css-gallery-news-and-resources/264-120-excellent-examples-of-css-horizantal-menu.html">120 Excellent Examples of CSS Horizantal Menu</a> </li>
<li><a href="http://www.smashingmagazine.com/2009/01/21/current-web-design-trends-for-2009/">More Web Design Trends For 2009</a> </li>
</ul>
<h4>Misc</h4>
<p>Since the economy is crap right now, unemployement is on the rise. Here&#8217;s a great list of jobs sites for web designers and developers.</p>
<ul>
<li><a href="http://www.webdesignerwall.com/general/jobs-for-designers-and-developers/">Jobs for Designers and Developers</a> </li>
</ul>
]]></content:encoded>
			<wfw:commentRss></wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Geek Week &#8211; Web Design, CSS, jQuery, PHP</title>
		<link>http://jasoncypret.com/geek-week-web-design-css-jquery-and-more/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=geek-week-web-design-css-jquery-and-more</link>
		<comments>http://jasoncypret.com/geek-week-web-design-css-jquery-and-more/#comments</comments>
		<pubDate>Tue, 04 Nov 2008 22:38:57 +0000</pubDate>
		<dc:creator>Jason Cypret</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Fireworks]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://jasoncypret.com/?p=500</guid>
		<description><![CDATA[<p>Posted in <a href="http://jasoncypret.com/category/web-design/" title="Web Design">Web Design</a></p><p></p>
<p>I have been geekn&#8217; out a lot lately reading some really great articles as well as learning some new techniques. There is a little bit of everything here and if you are a web developer it will come in handy. If you are not into jQuery skip this first section, as I have been really  ... <a href="http://jasoncypret.com/geek-week-web-design-css-jquery-and-more/">Read more</a>]]></description>
			<content:encoded><![CDATA[<p>Posted in <a href="http://jasoncypret.com/category/web-design/" title="Web Design">Web Design</a></p><p><img src="http://jasoncypret.com/wp-content/uploads/2008/11/jquery-links.jpg" alt="jquery" /></p>
<p>I have been geekn&#8217; out a lot lately reading some really great articles as well as learning some new techniques. There is a little bit of everything here and if you are a web developer it will come in handy. If you are not into jQuery skip this first section, as I have been really digging into what can be done in jQuery. If you like what you see check out <a href="http://delicious.com/jcvideopro/">my Delicious feed</a>, as I am always running across great links.</p>
<h4>jQuery &amp; JavaScript</h4>
<p>If you couldn&#8217;t tell, I love working with jQuery. Here is a brief list of some plug ins, some tutorials, and some techniques I found very interesting.</p>
<ul>
<li><a href="http://www.matts411.com/post/delaying_javascript_event_execution/">Delaying Javascript Event Execution</a></li>
<li><a href="http://particletree.com/features/preloading-data-with-ajax-and-json/">Preloading Data with Ajax and JSON</a></li>
<li><a href="http://medienfreunde.com/lab/innerfade/">InnerFade with jquery</a></li>
<li><a href="http://blog.jeremymartin.name/2008/02/jtruncate-text-truncation-for-jquery.html">Text Truncation for jQuery</a></li>
<li><a title="ey return to the site or visit a different page they still get their chosen styleshee" href="http://devsnippets.com/jquery-posts/20-jquery-plugins-for-unforgettable-user-experience.html">20 jQuery Plugins for Unforgettable User Experience</a></li>
<li><a href="http://plugins.jquery.com/project/ScrollTo">jQuery ScrollTo</a></li>
<li><a href="http://www.malsup.com/jquery/cycle/download.html">JQuery Cycle Slideshow</a></li>
<li><a href="http://www.leigeber.com/2008/10/animated-javascript-accordion/">Animated JavaScript Accordion V2</a></li>
<li><a href="http://www.ndoherty.com/blog/2007/10/29/coda-slider-11/">jQuery Coda-Slider</a></li>
<li><a href="http://devkick.com/lab/galleria/">Galleria a Javascript Image Gallery</a></li>
<li><a href="http://www.inarow.net/entries/development/js/intro_to_jquery.html">intro to jquery</a></li>
</ul>
<h4>XHTML &amp; CSS</h4>
<p>CSS is still my first love, and I am always doing what I can to stay up on the latest trends and techniques. Check out these CSS tips and tuts below.</p>
<ul>
<li><a href="http://www.thewojogroup.com/2008/10/10-easy-steps-to-great-website-optimization/">10 Easy Steps to Great Website Optimization</a></li>
<li><a href="http://www.dailycoding.com/Posts/purely_css_callouts.aspx">Purely CSS Speech Bubble</a></li>
<li><a href="http://www.protongun.com/2008/10/super-css-the-power-of-the-selector/">CSS Selectors</a></li>
<li><a href="http://css.dzone.com/news/writing-flexible-css">Writing Flexible CSS</a></li>
</ul>
<h4>PHP</h4>
<p>I started diving more into PHP due to the amount of websites I have deployed using WordPress. Since I typically use WordPress as a CMS, PHP is an integral part of making everything work. Check these out.</p>
<ul>
<li><a href="http://acomment.net/php-tutorials-utopia-13-vital-php-skills-for-every-novice-php-developer-and-solutions/378">13 Vital PHP skills for every PHP developer</a></li>
<li><a href="http://htmlblog.net/10-code-snippets-for-php-developers/">10 code snippets for PHP developers</a></li>
<li><a href="http://nettuts.com/javascript-ajax/creating-a-dynamic-poll-with-jquery-and-php/">Creating a Dynamic Poll with jQuery and PHP</a></li>
</ul>
<h4>WordPress</h4>
<p>I heart WordPress, and can&#8217;t wait till version 2.7 is released. Here are some great plug ins as well as some techniques to use when creating a WordPress theme for yourself and others.</p>
<ul>
<li><a href="http://scott.yang.id.au/code/search-excerpt/">Search Excerpt WordPress Plugin</a></li>
<li><a href="http://www.mattvarone.com/2008/10/functionsphp-wordpress-themes/">Functions.php in WordPress Themes</a></li>
<li><a href="http://blog.themeforest.net/wordpress/create-an-options-page-for-your-wordpress-theme/">Create an Options Page WordPress Theme</a></li>
<li><a href="http://nettuts.com/wordpress/context-includes/">Context Includes &#8211; WordPress</a></li>
</ul>
<h4>Flash &amp; Fireworks</h4>
<p>Photoshop is a dominate force in design. I love it and use it for all my Photography work, but when it comes to web design, I find Fireworks to be better suited. Whenever I find a tutorial for Fireworks I always read it. Check out the firetut below, as well as some flash tuts I&#8217;ve check out lately.</p>
<ul>
<li><a href="http://www.dezinerfolio.com/2008/10/31/20-free-tutorials-to-create-your-own-flash-game-2/">20 Tutorials to Create a Flash Game</a></li>
<li><a href="http://designm.ag/resources/adobe-fireworks-tutorials/">35 Excellent Adobe Fireworks Tutorials</a></li>
<li><a href="http://theflashblog.com/?p=469">3D video flip tutorial</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss></wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Smashing Magazine&#8217;s Best of January 2008</title>
		<link>http://jasoncypret.com/smashing-magazines-best-of-january-2008/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=smashing-magazines-best-of-january-2008</link>
		<comments>http://jasoncypret.com/smashing-magazines-best-of-january-2008/#comments</comments>
		<pubDate>Tue, 05 Feb 2008 22:03:04 +0000</pubDate>
		<dc:creator>Jason Cypret</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[fonts]]></category>
		<category><![CDATA[icons]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[logos]]></category>
		<category><![CDATA[png images]]></category>
		<category><![CDATA[ui]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://jasoncypret.com/2008/02/05/smashing-magazines-best-of-january-2008/</guid>
		<description><![CDATA[<p>Posted in <a href="http://jasoncypret.com/category/web-design/" title="Web Design">Web Design</a></p><p>
So I usually don&#8217;t post about other websites blog posts, but Smashing Magazine&#8217;s Best of January 2008 list is one to talk about. First off if you do not frequent Smashing Magazine, and you are a web designer, into CSS, photoshop, or just curious about the web, stop what your doing and go read the  ... <a href="http://jasoncypret.com/smashing-magazines-best-of-january-2008/">Read more</a>]]></description>
			<content:encoded><![CDATA[<p>Posted in <a href="http://jasoncypret.com/category/web-design/" title="Web Design">Web Design</a></p><p><img width="586px" src='http://jasoncypret.com/wp-content/uploads/2008/02/bestofjan.jpg' alt='Smashing Magazine’s Best of January 2008' /><br />
So I usually don&#8217;t post about other websites blog posts, but <a href="http://www.smashingmagazine.com/2008/01/25/best-of-january-2008/">Smashing Magazine&#8217;s Best of January 2008</a> list is one to talk about. First off if you do not frequent Smashing Magazine, and you are a web designer, into CSS, photoshop, or just curious about the web, stop what your doing and go read the site. I usually end up bookmarking most of their posts as they are so informational and full of useful resources.</p>
<p>Now that I&#8217;ve given them a glorious praise. Let me break down the links that I felt were important to me and bookmarked. Trust me there is lots more on the full list, if you see one that is important to you that I didn&#8217;t include, comment and share it with everybody.</p>
<p><a href="http://ui-patterns.com/">UI Patterns</a><br />
UI Patterns is basically a library of commonly used UI solutions that most of  us have run across. Personally this is great if you are adding a section to your site, and are wondering, &#8220;what should be the best way to present my information.&#8221;</p>
<p><a href="http://wpcandy.com/the-wordpress-help-sheet/">WP Candy &#8211; WP Help Sheet</a><br />
You know I love WordPress. I now have 4 sites running it. This is a WordPress help or cheat sheet. You can get WordPress information, as well as download working PHP files.</p>
<p><a href="http://cssglobe.com/lab/textgradient/">CSS Globe &#8211; CSS Text Gradients</a><br />
I saw this done recently with a grunge effect, but this is the first time I&#8217;ve seen it with gradients. Same principle, but very nicely implemented.</p>
<p><a href="http://pooliestudios.com/projects/iconize/">Poolie Studios &#8211; Iconize Textlinks with CSS</a><br />
Icons in web design are a great was to visually speak to your audience in a very quick and easy way. I would love to roll this out on my sites.</p>
<p><a href="http://cssglobe.com/lab/searchfield/">CSS Globe &#8211; SearchField</a><br />
A very pretty search field. I will probably pick it apart and reassemble something more fitting to my sites. Still very nice.</p>
<p><a href="http://www.jameswhittaker.com/blog/article/em-based-layouts-vertical-rhythm-calculator/">James Whittaker &#8211; Em based layouts &#8211; Vertical rhythm calculator</a><br />
If you have ever dealt with EM&#8217;s in CSS you know that they can be difficult to use. I find myself quickly switching back to pixels. However EM&#8217;s are very important for a flexible expandable CSS design. James made a EM calculator that helps you convert your PX to EM&#8217;s.</p>
<p><a href="http://www.wakeuplater.com/website-building/use-your-own-fonts-a-simple-sifr-guide.aspx">Wake Up Later &#8211; sIFR Tutorial</a><br />
I never have personally used this method, but you never know when you may be faced with a project where it is absolutely necessary. Use your own fonts on a web page. I am also a big fan of not using images for text as much as possible. This solves  that problem.</p>
<p><a href="http://www.dedestruct.com/2008/01/13/cross-browser-transparency-with-png/">DeDestruct &#8211;  Cross Browser Transparency with .PNG</a><br />
As a designer I love begin able to use PNG images when possible. However all web developers know that PNG&#8217;s do not work correctly in all browsers. There are many methods for using PNG images, this is another one.</p>
<p><a href="http://www.dragnet.se/webbdesign/button_collection.html">Button collection</a><br />
I am always looking for inspiration. At my new job we use call to action buttons all the time. It is always good to see what other designers are doing.</p>
<p><a href="http://yugushare.blogspot.com/2007/12/kick-ass-creative-logos-trilogy-final.html">Creative Logos</a><br />
What more can I say. These are some really great looking logo designs.</p>
<p><a href="http://vandelaydesign.com/blog/design/minimalistic-web-designs/">25 Beautiful, Minimalistic Website Designs</a><br />
Sometimes you can say more with less. These websites definitely achieve minimalism in a big way.</p>
<p><a href="http://www.logotemplater.com/">Logo Templater</a><br />
Ever needed to through a logo on a comp on the fly. I have. This is a great site for free great looking logos.</p>
<p><a href="http://dryicons.com/free-icons/">Dry Icons &#8211; Free Icons</a><br />
Same as the last one. a good resource to throwing icons on a site in a hurry.</p>
]]></content:encoded>
			<wfw:commentRss></wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

