<?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>MediaFormations &#187; Featured</title>
	<atom:link href="http://mediaformations.com/category/featured/feed/" rel="self" type="application/rss+xml" />
	<link>http://mediaformations.com</link>
	<description>Welcome to Media Formations</description>
	<lastBuildDate>Fri, 02 Jul 2010 04:25:33 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Vertical Sliding Menu with Jquery</title>
		<link>http://mediaformations.com/vertical-sliding-menu-with-jquery/</link>
		<comments>http://mediaformations.com/vertical-sliding-menu-with-jquery/#comments</comments>
		<pubDate>Tue, 10 Nov 2009 14:00:24 +0000</pubDate>
		<dc:creator>Jonathan</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://mediaformations.com/?p=464</guid>
		<description><![CDATA[When WordPress changed their administrator layout I was fascinated with the navigation menu. It has a sleek and useful feel to it. Notable features would include the active styling to your current page, the sliding action of each menu section, the hover effect that shows the user which menu can be opened and how it [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-555" title="VerticalMenuTitle" src="http://mediaformations.com/wp-content/uploads/2009/11/VerticalMenuTitle.png" alt="VerticalMenuTitle" width="525" height="194" />When WordPress changed their administrator layout I was fascinated with the navigation menu. It has a sleek and useful feel to it. Notable features would include the active styling to your current page, the sliding action of each menu section, the hover effect that shows the user which menu can be opened and how it keeps menus open between page views. Someone who designs and codes web sites can not just look at the end user experience but also the code behind the menu. I think WordPress does a very good job of using images and css to style the menu efficiently and cleanly but enough about WordPress let me get to what this article will be about.</p>
<p>I want to show how a vertical sliding menu can take on some of the features WordPress has implemented but also keep it simple to explain. I did not want to use any images to style the menu and keep everything as clean as possible. What I ended up with was 50% css, 25% jquery and 25% html. I used a few advanced CSS selectors and attributes (like border radius) to refine the effect.</p>
<p>Take a look at the <a href="http://mediaformations.com/examples/VerticalSlideMenuPart1.html" target="_blank">final product here</a> and read on for the explanation. Like always I have put the CSS and jquery in the same file to make it easy for you to inspect and download.</p>
<p><span id="more-464"></span>Lets start out with the base HTML. We start with a simple list</p>
<pre>&lt;div id="menu"&gt;
 &lt;ul class="navmenu"&gt;
   &lt;li&gt;&lt;div class="menutop"&gt;&lt;a href="#"&gt;Posts&lt;/a&gt;&lt;div class="toggle"&gt;+&lt;/div&gt;&lt;/div&gt;
     &lt;ul class="submenu"&gt;
       &lt;li&gt;&lt;a href="#"&gt;Add New&lt;/a&gt;&lt;/li&gt;
       &lt;li&gt;&lt;a href="#"&gt;Tags&lt;/a&gt;&lt;/li&gt;
     &lt;/ul&gt;
   &lt;/li&gt;
   &lt;li&gt;&lt;div class="menutop"&gt;&lt;a href="#"&gt;Pages&lt;/a&gt;&lt;div class="toggle"&gt;+&lt;/div&gt;&lt;/div&gt;
     &lt;ul class="submenu"&gt;
       &lt;li&gt;&lt;a href="#"&gt;Add New&lt;/a&gt;&lt;/li&gt;
       &lt;li&gt;&lt;a href="#"&gt;Edit&lt;/a&gt;&lt;/li&gt;
     &lt;/ul&gt;
   &lt;/li&gt;
   &lt;li&gt;&lt;div class="menutop menusingle"&gt;&lt;a href="#"&gt;Comments&lt;/a&gt;&lt;/div&gt;&lt;/li&gt;
   &lt;li&gt;&lt;div class="menutop"&gt;&lt;a href="#"&gt;Users&lt;/a&gt;&lt;div class="toggle"&gt;+&lt;/div&gt;&lt;/div&gt;
     &lt;ul class="submenu"&gt;
       &lt;li&gt;&lt;a href="#"&gt;Manage&lt;/a&gt;&lt;/li&gt;
       &lt;li&gt;&lt;a href="#"&gt;Add New&lt;/a&gt;&lt;/li&gt;
       &lt;li&gt;&lt;a href="#"&gt;Profile&lt;/a&gt;&lt;/li&gt;
     &lt;/ul&gt;
   &lt;/li&gt;
 &lt;/ul&gt;
 &lt;/div&gt;</pre>
<p>I start by wrapping the whole thing in a div with a class of &#8216;menu&#8217;. Then everything else is nested unordered lists. Let me go over the rest of the class names.</p>
<p><img class="aligncenter size-full wp-image-548" title="menuCss" src="http://mediaformations.com/wp-content/uploads/2009/11/menuCss.png" alt="menuCss" width="525" height="400" /></p>
<dl>
<dt>navmenu</p>
</dt>
<dd>This is the class for the top most unordered list.</p>
</dd>
<dt>menutop</p>
</dt>
<dd>This is given a div within the line items that will be displayed as visual headers for each section. Wrapping your links inside of a div is only necessary for the heading line items.</p>
</dd>
<dt>menusingle</p>
</dt>
<dd>This is a special class applied to the heading line items that will not have a nested list.</p>
</dd>
<dt>toggle</p>
</dt>
<dd>This class is applied to a div tag which is inside the menutop div. This allows you to link the header title to a page while the toggle div is clicked to expand the list.</p>
</dd>
<dt>submenu</p>
</dt>
<dd>This is applied to the &#8216;ul&#8217; tag of the nested lists. </dd>
</dl>
<p>What really makes the list look nice is the CSS.</p>
<pre> /*Toggle Area*/
 #menu .toggle {float:right;width:9px; padding:5px; cursor:pointer; border-top:1px solid white; border-left:1px solid #E0E0E0; color:#999;}
 #menu ul.navmenu li:first-child .toggle{border-width:0 0 0 1px;}

 /*Menu Setup*/
 #menu ul{padding:0; margin:0; width:150px;}
 #menu ul ul{border:1px solid #CCC;}
 #menu ul.navmenu li {margin:0; list-style:none;}
 /*Links*/
 #menu ul.navmenu a, #menu ul.navmenu a:visited {text-decoration:none; padding:5px; display:block; color:#008FDD;}
 #menu ul.navmenu ul.submenu a:hover{background:#FFF4D2; color:#333;}
 /*Heading Outer div*/
 #menu ul.navmenu .menutop{border:1px solid #CCC; border-width:0 1px; overflow:hidden; width:150px; background:#F9F9F9; }
 /*Header Links*/
 #menu ul.navmenu .menutop a{width:120px;float:left;margin:0 0 1px 0; border-top:1px solid white;}
 /*Header Link Hover*/
 #menu ul.navmenu .menutop a:hover{color:#333;}
 /*Removes white border for the first header*/
 #menu ul.navmenu li:first-child .menutop a {border-width:0px;}

 /*Single Menu Width Fix*/
 #menu ul.navmenu .menusingle a{width:140px;}

 /*Border Radius and Special Border Width*/
 #menu ul.navmenu li:first-child .menutop{border-width:1px 1px 0 1px; -moz-border-radius:5px 5px 0 0;-webkit-border-top-left-radius:5px;-webkit-border-top-right-radius:5px;}
 #menu ul.navmenu li:last-child .menutop{border-width:0px 1px 1px 1px; -moz-border-radius:0 0 5px 5px; -webkit-border-bottom-left-radius:5px;-webkit-border-bottom-right-radius:5px;}
 #menu ul.navmenu li:last-child ul.submenu{-moz-border-radius:0 0 5px 5px;-webkit-border-bottom-left-radius:5px;-webkit-border-bottom-right-radius:5px;}
 #menu ul.navmenu li:last-child .menutop-open{-moz-border-radius:0;-webkit-border-radius:0px; border-width:0 1px;}</pre>
<p>Lets break it down. There is a lot here so I am only going to hit on each area.</p>
<dl>
<dt>Toggle Area</dt>
<dd>This sets up the styling for the area with the &#8220;+&#8221; and &#8220;-&#8221;. Because this is floated to the right of the heading div it needs a width and it will be used as a click-able area so I added the pointer when you roll over it. The line that uses li:first-child only selects the first line item within the ul.navmneu selection. That this way I can remove the white top border for the very first header</dd>
<dt>Menu Setup</p>
</dt>
<dd>This is the basic stuff to reset the margin, padding and to set the list style to none. I also add a border around the nested lists so that they create some separation when opened.</p>
</dd>
<dt>Links</p>
</dt>
<dd>Nothing to special here. I make sure to apply all the padding that I want for each line to the link tag. That way when I apply a hover style I can change the background color and the whole line will change.<img title="padding" src="http://mediaformations.com/wp-content/uploads/2009/11/padding.png" alt="padding" width="525" height="230" /></p>
</dd>
<dt>Heading Outer Div</p>
</dt>
<dd>In order to get the appropriate border around the menu I decided to let each heading area have a border and then the nested list get their own border. This area not only applies the border to just the sides of the heading div but also sets it&#8217;s width and overflow. The overflow is important because the items within the div will be floated so the height will not be calculated correctly without the overflow setting.<img title="HeaderArea" src="http://mediaformations.com/wp-content/uploads/2009/11/HeaderArea.png" alt="HeaderArea" width="525" height="300" /></p>
</dd>
<dt>Heading Links</p>
</dt>
<dd>This area sets up the links within the heading section. The width is set because the item is floated. Remember to add in your padding and border widths when figuring your widths.</p>
</dd>
<dt>Single Menu</p>
</dt>
<dd>I wanted to show the flexibility of coding for different situations. I made sure to take into account if a menu heading will not have any sub links. This sets the width correctly thinking that the toggle area will be removed.</p>
</dd>
<dt>Border Widths and Radius</p>
</dt>
<dd>This area has a lot of extra code for the rounded borders that look nice in Firefox and Webkit. However it also creates the top and bottom border that completes the border around the whole menu. I am using :first-child and :last-child to select the top and bottom header items. As a special note none of the border radius styles will work in IE, which is no big deal. However the :last-child also is not followed by IE but I have a fix for that in the java code. </dd>
</dl>
<p>I tried to create something that was usable out of the box but still very simple. If you are having trouble understanding the CSS I recommend getting Firebug for Firefox and using that to see what CSS is effecting what area.</p>
<p>For the javascript I am using the Jquery library and it looks like this.</p>
<pre>if ($.browser.msie){
   $('#menu ul.navmenu li:last-child .menutop').css('border-width','0 1px 1px;')
 }

 $('.toggle:not(.toggle-open)') .addClass('toggle-closed') .parents('li') .children('ul') .hide();    

 $('.toggle') .click(function(){
   if ($(this) .hasClass('toggle-open')) {
     $(this) .removeClass('toggle-open') .addClass('toggle-closed') .empty('') .append('+') .parents('li') .children('ul') .slideUp(250);
     $(this) .parent('.menutop') .removeClass('menutop-open') .addClass('menutop-closed');
   }else{
     $(this) .parent('.menutop') .removeClass('menutop-closed') .addClass('menutop-open');
     $(this) .removeClass('toggle-closed') .addClass('toggle-open') .empty('') .append('&amp;ndash;') .parents('li') .children('ul') .slideDown(250);
 }
 })</pre>
<p>This all within the normal doc.ready function that starts up the Jquery code. I first start out with a simple fix for IE not following the :last-child selector. I thought if IE does not support it I bet Jquery still does and this works. I check to see if the browser is IE and then apply the style as an inline element.</p>
<p>Before proceeding I need to explain a little about how the menu is going to work. Basically the java code will check for any toggle divs with the class of &#8220;toggle-open&#8221; and then close all the menus where the open class is not found. This is also how the java code will know if a menu is open or closed and how you can style items depending on if they are open or not.</p>
<pre>$('.toggle:not(.toggle-open)') .addClass('toggle-closed') .parents('li') .children('ul') .hide();</pre>
<p>This line looks for all the items with the class &#8220;toggle&#8221; and then looks to see if that item has &#8220;toggle-open&#8221; if not it finds the previous line item and then the next ul tag and hides it. We could have just hand coded in to hide all the sub menus before hand however this will allow those people without java enable to still view the contents of the menu. Also this allows you to specify if a menu is going to be open or not before the java gets to it.</p>
<p>The next java line is a click function that makes the sub menus slide open and closed. It starts with an if statement that looks to see if the toggle element has the class &#8220;toggle-open&#8221;, if not then it knows the menu is closed.</p>
<pre>$(this) .removeClass('toggle-open') .addClass('toggle-closed') .empty('') .append('+') .parents('li') .children('ul') .slideUp(250);</pre>
<p>The next line is used if the &#8220;toggle-open&#8221; class if found and the menu should be closed. &#8220;This&#8221; refers to the clicked item. So it removes the open class and adds the &#8220;toggle-closed&#8221; class. It then empties the text held within the toggle div and adds a plus sign. Then the parent line item is found and the next ul tag after that. Finally it slides up the sub menu.</p>
<p>The next line that adds the open or closed class to the menutop div is just for styling and I do not use it here. This would allow you to style the whole heading area for each section depending of if they are open or closed.</p>
<p>After the else statement the code is just the opposite. The only special thing is instead of adding a plus sign I add an &#8220;ndash&#8221;. This looks better than the minus sign but you can change this to add whatever you want or not add anything if you are using background images.</p>
<p>That is it. It seems like a lot of code for something so small but having a menu that is easy to use and easy on the eyes can go a long way. Please leave any questions or comments down below and thanks for reading.</p>
<p>Check out the final product in the demo.</p>
<div class='demobox'>
<div class="demo"><a href="/examples/VerticalSlideMenuPart1.html" target="_blank">Demo</a></div>
<div class="demo"><a href="/examples/VerticalSlideMenuUP.html" target="_blank">Demo &#8211; Menu that slides Up</a></div>
</div>
<p>In the next installment I will talk about how to set cookies in order to remember what menus are open between page views and also and easy way to create active styling for the current page.</p>



Share with friends:


	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fmediaformations.com%2Fvertical-sliding-menu-with-jquery%2F&amp;title=Vertical%20Sliding%20Menu%20with%20Jquery&amp;notes=When%20WordPress%20changed%20their%20administrator%20layout%20I%20was%20fascinated%20with%20the%20navigation%20menu.%20It%20has%20a%20sleek%20and%20useful%20feel%20to%20it.%20Notable%20features%20would%20include%20the%20active%20styling%20to%20your%20current%20page%2C%20the%20sliding%20action%20of%20each%20menu%20section%2C%20the%20ho" title="del.icio.us"><img src="http://mediaformations.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fmediaformations.com%2Fvertical-sliding-menu-with-jquery%2F&amp;title=Vertical%20Sliding%20Menu%20with%20Jquery&amp;bodytext=When%20WordPress%20changed%20their%20administrator%20layout%20I%20was%20fascinated%20with%20the%20navigation%20menu.%20It%20has%20a%20sleek%20and%20useful%20feel%20to%20it.%20Notable%20features%20would%20include%20the%20active%20styling%20to%20your%20current%20page%2C%20the%20sliding%20action%20of%20each%20menu%20section%2C%20the%20ho" title="Digg"><img src="http://mediaformations.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fmediaformations.com%2Fvertical-sliding-menu-with-jquery%2F&amp;t=Vertical%20Sliding%20Menu%20with%20Jquery" title="Facebook"><img src="http://mediaformations.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fmediaformations.com%2Fvertical-sliding-menu-with-jquery%2F&amp;title=Vertical%20Sliding%20Menu%20with%20Jquery" title="Mixx"><img src="http://mediaformations.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fmediaformations.com%2Fvertical-sliding-menu-with-jquery%2F&amp;title=Vertical%20Sliding%20Menu%20with%20Jquery" title="DZone"><img src="http://mediaformations.com/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.friendfeed.com/share?title=Vertical%20Sliding%20Menu%20with%20Jquery&amp;link=http%3A%2F%2Fmediaformations.com%2Fvertical-sliding-menu-with-jquery%2F" title="FriendFeed"><img src="http://mediaformations.com/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fmediaformations.com%2Fvertical-sliding-menu-with-jquery%2F&amp;title=Vertical%20Sliding%20Menu%20with%20Jquery&amp;source=MediaFormations+Welcome+to+Media+Formations&amp;summary=When%20WordPress%20changed%20their%20administrator%20layout%20I%20was%20fascinated%20with%20the%20navigation%20menu.%20It%20has%20a%20sleek%20and%20useful%20feel%20to%20it.%20Notable%20features%20would%20include%20the%20active%20styling%20to%20your%20current%20page%2C%20the%20sliding%20action%20of%20each%20menu%20section%2C%20the%20ho" title="LinkedIn"><img src="http://mediaformations.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.propeller.com/submit/?url=http%3A%2F%2Fmediaformations.com%2Fvertical-sliding-menu-with-jquery%2F" title="Propeller"><img src="http://mediaformations.com/wp-content/plugins/sociable/images/propeller.png" title="Propeller" alt="Propeller" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fmediaformations.com%2Fvertical-sliding-menu-with-jquery%2F&amp;title=Vertical%20Sliding%20Menu%20with%20Jquery" title="Reddit"><img src="http://mediaformations.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fmediaformations.com%2Fvertical-sliding-menu-with-jquery%2F&amp;title=Vertical%20Sliding%20Menu%20with%20Jquery" title="StumbleUpon"><img src="http://mediaformations.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://mediaformations.com/feed/" title="RSS"><img src="http://mediaformations.com/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://mediaformations.com/vertical-sliding-menu-with-jquery/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Beginners guide to your camera : The Aperture</title>
		<link>http://mediaformations.com/beginners-guide-to-your-camera-the-aperture/</link>
		<comments>http://mediaformations.com/beginners-guide-to-your-camera-the-aperture/#comments</comments>
		<pubDate>Wed, 12 Aug 2009 20:36:27 +0000</pubDate>
		<dc:creator>Jonathan</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[guides]]></category>
		<category><![CDATA[photography]]></category>

		<guid isPermaLink="false">http://mediaformations.com/?p=294</guid>
		<description><![CDATA[The Aperture &#124; The Shutter &#124;  The ISO (soon) This guide is directed towards people who know very little about cameras. Maybe you own a small point and shoot but do not know what all the manual settings mean. Or you want to know what the numbers are that flash up right before you take a [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-368" title="CameraGuide" src="http://mediaformations.com/wp-content/uploads/2009/08/CameraGuide.jpg" alt="CameraGuide" width="525" height="200" /></p>
<p style="text-align: center;"><strong>The Aperture</strong> | <a href="/beginners-guide-to-your-camera-the-shutter/">The Shutter</a> |  The ISO (soon)</p>
<p>This guide is directed towards people who know very little about cameras. Maybe you own a small point and shoot but do not know what all the manual settings mean. Or you want to know what the numbers are that flash up right before you take a photograph. This is for you. I plan to talk a little about the aperture in this guide and will talk about the shutter speed and sensitivity in future guides. Expect this is be very basic and nothing ground breaking. I will try and keep everything in plain English and include a lot of pictures.</p>
<p><span id="more-294"></span></p>
<h3>Camera Modes</h3>
<p>There are three basic parts that are set or measured when you take a picture.</p>
<ul>
<li>The aperture or F-Stop</li>
<li>The Shutter Speed</li>
<li>The Sensitivity or ISO</li>
</ul>
<p>Some or all of these settings can be determined for you. It all depends on which mode your camera is set in.</p>
<p><img class="aligncenter size-full wp-image-359" title="ModeDials" src="http://mediaformations.com/wp-content/uploads/2009/08/ModeDials.jpg" alt="ModeDials" width="525" height="200" /></p>
<p>Full auto mode will help you pick out the best settings depending on the amount of light that is available. Aperture mode (depicted with an &#8220;A&#8221; or &#8220;Av&#8221;) lets you set the aperture size and then picks the best shutter speed. Shutter mode (depicted with an &#8220;S&#8221; or &#8220;Tv&#8221;) lets you set the shutter speed and then picks the best aperture. Your camera may also have a Priority Mode (depicted with a &#8220;P&#8221;). In this mode the camera will pick a combination of shutter speed and aperture size for you, however you are able to select other equal combinations depending on if you need more of one value.</p>
<h3>The Aperture or F-Stop</h3>
<p>Let&#8217;s break the different parts down by starting with the one that confuses the most people, the aperture. In a camera lens the aperture is the device that closes in order to block (or stop) the light from getting into the camera. The aperture does not block all of the light and in some cases does not block much light at all. Consider this when you are outside on a sunny day and there is a lot of light around. It may be too much light. Just like the pupils in your eyes get smaller when you are outside the aperture of the camera gets smaller to manage the amount of light. The aperture is the device or object inside the camera lens. The size of the hole left when the aperture is closed is called the F-Stop. F-Stops are funny things and just like with wire gauges the smaller the number, the larger the hole that is left when the aperture is closed (the more light that is let through) and vise-versa.</p>
<p><img class="aligncenter size-full wp-image-353" title="Aperture" src="http://mediaformations.com/wp-content/uploads/2009/08/Aperture.png" alt="Aperture" width="525" height="255" /></p>
<p>F-Stops can be expressed in several different ways: f/8, f-8, or 1:8. Also each step on the scale is equal to double or half the amount of light. Example, the opening of F/8 will let in double the amount of light than F/11 and F/4 will let in half the amount of light than F/2.8 (remembering that the smaller number means larger hole and more light). With this in mind you might hear someone saying that a specific camera is quicker or that a lens is quicker. What this normally means is that it has a lower minimum F-Stop value. Not all cameras can obtain every F-Stop value. Quicker just means that you can use a low F-Stop value and thus a higher Shutter Speed. (I will talk about this in the next guide)</p>
<p>You can imagine that if you are shooting photos in a setting with a small amount of light (indoors) you will require a smaller F-Stop number. When out side or while using a flash you will require a larger F-Stop number. The F-Stop can also have an effect on how much a camera or lens costs. It costs more to manufacture a lens that is efficient enough to carry the light clearly to the camera when the aperture is barely closed. This is especially true for zoom or telephoto lenses.</p>
<p><img class="aligncenter size-full wp-image-363" title="canonfstop" src="http://mediaformations.com/wp-content/uploads/2009/08/canonfstop.jpg" alt="canonfstop" width="525" height="298" /></p>
<p>I want to talk quickly about lenses and how they relate to the F-Stop. Not all lenses in point and shoot cameras are equal even though they all fit into very small spaces. Most point and shoot cameras or cheaper removable lenses will have a variable F-Stop. This means that as you zoom the lens in and out the minimum F-Stop will change. As you zoom out the minimum F-stop will increase and as you zoom in the minimum F-Stop will decrease. You should be aware of this when in a setting that requires a low F-Stop number. Sometimes taking a few steps toward you subject can eliminate the need to zoom and giving you a lower F-Stop. Also when you are going to buy and camera you should take a look at the F-Stop. Typically getting a lens with a number around 2 or 2.8 is the best. This will allow you to take &#8220;faster&#8221; photographs in low light situations.</p>
<p>Please leave your questions or comments. There will be other guides to follow this one about the Shutter Speed and the Sensitivity.</p>



Share with friends:


	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fmediaformations.com%2Fbeginners-guide-to-your-camera-the-aperture%2F&amp;title=Beginners%20guide%20to%20your%20camera%20%3A%20The%20Aperture&amp;notes=%0D%0AThe%20Aperture%20%7C%20The%20Shutter%20%7C%C2%A0%20The%20ISO%20%28soon%29%0D%0AThis%20guide%20is%20directed%20towards%20people%20who%20know%20very%20little%20about%20cameras.%20Maybe%20you%20own%20a%20small%20point%20and%20shoot%20but%20do%20not%20know%20what%20all%20the%20manual%20settings%20mean.%20Or%20you%20want%20to%20know%20what%20the%20numbers%20a" title="del.icio.us"><img src="http://mediaformations.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fmediaformations.com%2Fbeginners-guide-to-your-camera-the-aperture%2F&amp;title=Beginners%20guide%20to%20your%20camera%20%3A%20The%20Aperture&amp;bodytext=%0D%0AThe%20Aperture%20%7C%20The%20Shutter%20%7C%C2%A0%20The%20ISO%20%28soon%29%0D%0AThis%20guide%20is%20directed%20towards%20people%20who%20know%20very%20little%20about%20cameras.%20Maybe%20you%20own%20a%20small%20point%20and%20shoot%20but%20do%20not%20know%20what%20all%20the%20manual%20settings%20mean.%20Or%20you%20want%20to%20know%20what%20the%20numbers%20a" title="Digg"><img src="http://mediaformations.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fmediaformations.com%2Fbeginners-guide-to-your-camera-the-aperture%2F&amp;t=Beginners%20guide%20to%20your%20camera%20%3A%20The%20Aperture" title="Facebook"><img src="http://mediaformations.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fmediaformations.com%2Fbeginners-guide-to-your-camera-the-aperture%2F&amp;title=Beginners%20guide%20to%20your%20camera%20%3A%20The%20Aperture" title="Mixx"><img src="http://mediaformations.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fmediaformations.com%2Fbeginners-guide-to-your-camera-the-aperture%2F&amp;title=Beginners%20guide%20to%20your%20camera%20%3A%20The%20Aperture" title="DZone"><img src="http://mediaformations.com/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.friendfeed.com/share?title=Beginners%20guide%20to%20your%20camera%20%3A%20The%20Aperture&amp;link=http%3A%2F%2Fmediaformations.com%2Fbeginners-guide-to-your-camera-the-aperture%2F" title="FriendFeed"><img src="http://mediaformations.com/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fmediaformations.com%2Fbeginners-guide-to-your-camera-the-aperture%2F&amp;title=Beginners%20guide%20to%20your%20camera%20%3A%20The%20Aperture&amp;source=MediaFormations+Welcome+to+Media+Formations&amp;summary=%0D%0AThe%20Aperture%20%7C%20The%20Shutter%20%7C%C2%A0%20The%20ISO%20%28soon%29%0D%0AThis%20guide%20is%20directed%20towards%20people%20who%20know%20very%20little%20about%20cameras.%20Maybe%20you%20own%20a%20small%20point%20and%20shoot%20but%20do%20not%20know%20what%20all%20the%20manual%20settings%20mean.%20Or%20you%20want%20to%20know%20what%20the%20numbers%20a" title="LinkedIn"><img src="http://mediaformations.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.propeller.com/submit/?url=http%3A%2F%2Fmediaformations.com%2Fbeginners-guide-to-your-camera-the-aperture%2F" title="Propeller"><img src="http://mediaformations.com/wp-content/plugins/sociable/images/propeller.png" title="Propeller" alt="Propeller" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fmediaformations.com%2Fbeginners-guide-to-your-camera-the-aperture%2F&amp;title=Beginners%20guide%20to%20your%20camera%20%3A%20The%20Aperture" title="Reddit"><img src="http://mediaformations.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fmediaformations.com%2Fbeginners-guide-to-your-camera-the-aperture%2F&amp;title=Beginners%20guide%20to%20your%20camera%20%3A%20The%20Aperture" title="StumbleUpon"><img src="http://mediaformations.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://mediaformations.com/feed/" title="RSS"><img src="http://mediaformations.com/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://mediaformations.com/beginners-guide-to-your-camera-the-aperture/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Creating a simple feedback button</title>
		<link>http://mediaformations.com/creating-a-simple-feedback-button/</link>
		<comments>http://mediaformations.com/creating-a-simple-feedback-button/#comments</comments>
		<pubDate>Wed, 29 Jul 2009 14:00:40 +0000</pubDate>
		<dc:creator>Jonathan</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://mediaformations.com/?p=295</guid>
		<description><![CDATA[A trend that has becoming more popular is having a floating feedback button on your home page so you can take advantage of your visitors opinion. The button can link to a form where the user can express their thoughts about the site or a page that allows them to vote on what features they [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-307" title="FeedBackButtonTitle" src="http://mediaformations.com/wp-content/uploads/2009/07/FeedBackButtonTitle.jpg" alt="FeedBackButtonTitle" width="525" height="242" /></p>
<p>A trend that has becoming more popular is having a floating feedback button on your home page so you can take advantage of your visitors opinion. The button can link to a form where the user can express their thoughts about the site or a page that allows them to vote on what features they would like to see on the site. You can mimic the feedback button for your own site with a some basic html and css.</p>
<p>Sneak a peek at the <a href="http://mediaformations.com/examples/SimpleFeedbackButton.html" target="_blank">final product</a>. (I hope you like the red, white and blue.)</p>
<p><span id="more-295"></span></p>
<p>After completing the example page I was surprise how easy this is to do. I will start out with a simple page that has a container which is centered on the page. Inside that I have a header, navigation area, content area and a footer.</p>
<pre>&lt;div id="container"&gt;
 &lt;div id="header"&gt;&lt;h2&gt;Header Here&lt;/h2&gt;&lt;/div&gt;
 &lt;div id="nav"&gt;Simple Nav&lt;/div&gt;
 &lt;div id="content"&gt;
    &lt;h3&gt;Content&lt;/h3&gt;
    &lt;p&gt;Words and paragraphs go here&lt;/p&gt;
 &lt;/div&gt;
 &lt;div id="footer"&gt;&lt;h4&gt;Footer&lt;/h4&gt;&lt;/div&gt;
&lt;/div&gt;</pre>
<p>Nothing crazy here just some simple divs and the following CSS. I have added some <a href="http://www.lipsum.com/" target="_blank">lorem ispum</a> to the content area in my example. I do not show it in the code to save space.</p>
<pre> body{font:.8em/1.6 Arial, Helvetica, sans-serif ; background:#CCC;}
 img{border:none;}
 #container{width:800px; margin:0 auto; border:1px solid #666666;}
 #header,#content,#footer{margin:0; padding:20px;}
 #header{background:red;}
 #nav{background:#333333; color:white; padding:10px;}
 #content{background:white;}
 #footer{background:blue;}</pre>
<p>Again some simple background colors so we can tell where each section is being displayed. The above makes something that looks like this.</p>
<p><img class="aligncenter size-full wp-image-305" title="FeedBackButtonPage" src="http://mediaformations.com/wp-content/uploads/2009/07/FeedBackButtonPage.jpg" alt="FeedBackButtonPage" width="525" height="461" /></p>
<p>The feedback button has text that runs vertically and I thought it would be easy to do with CSS or Javascript. However after some looking around I found a few complicated Javascript solutions that only work with specific fonts and a CSS solution that only works in IE. For ease of implementation  I find that you get a much better result if you create an image file for the text. I choose to create a simple PNG file with white letters and a slight drop shadow.</p>
<p><img class="aligncenter size-full wp-image-310" title="FeedBackButtonPNG" src="http://mediaformations.com/wp-content/uploads/2009/07/FeedBackButtonPNG.jpg" alt="FeedBackButtonPNG" width="500" height="129" /></p>
<p>Here I show the feedback letters on different backgrounds for illustration purposes. I will use a png file where the background is transparent. This will allow for the maximum flexability. Now with the image made we can create the html and CSS needed. First lets create a div for the feedback image to be displayed in.</p>
<pre>&lt;div id="feedback"&gt;&lt;a href"#"&gt;&lt;img src="images/feedback.png" /&gt;&lt;/a&gt;&lt;/div&gt;</pre>
<p>I have made a div with an id of &#8220;feedback&#8221; and inside of that a hyperlink anchor tag and finally inside of that the feedback text image. This div can be placed any where on your page however I suggest that it goes toward the bottom. This will allow the more important things on your page to load first. Now for the CSS that will position this div in the correct spot.</p>
<pre>#feedback a{ display:block; position:fixed; top:200px; right:-1px; background:green; padding:7px 5px;
 border:1px solid #030;
 border-left-color:#060;
 border-top-color:#090;
 }
 #feedback a:hover{background:#030;border:1px solid #030;}</pre>
<p>I started off with selecting the hyperlink anchor tag with in the div &#8220;feedback&#8221;.</p>
<p><img class="aligncenter size-full wp-image-306" title="FeedBackButton" src="http://mediaformations.com/wp-content/uploads/2009/07/FeedBackButton.jpg" alt="FeedBackButton" width="387" height="242" /></p>
<dl>
<dt>display:block</dt>
<dd>Because the anchor tag is not a block level item we need to tell it to display as one. This will allow the positioning to work.</dd>
<dt>position:fixed</dt>
<dd>A fixed position will plant the feedback button in one location relative to the browser window.</dd>
<dt>top:200px; right:-1px;</dt>
<dd>Top places the feedback button exactly 200 pixels from the top of the window and right places button one pixel to the right off the window. This is done so that when a one pixel border is applied it doesn&#8217;t show on the right side.</dd>
<dt>background:green;</dt>
<dd>This creates a green background for the feedback button. You can choose any color you like.</dd>
<dt>padding:7px 5px;</dt>
<dd>This creates a little padding around the image. This may or may not be necessary depending on your image.</dd>
<dt>border:1px solid #030;</dt>
<dd>Finally I created a dark green border around the feedback image. I have added other border colors to create a more three dimensional look.</dd>
</dl>
<p>The next selector uses the CSS pseudo hover class to create a rollover effect. The class changes the background to a darker green and applies the same color for the border.</p>
<p>I want to add that I probably didn&#8217;t need to have hyperlink anchor tag inside of a div tag. I could have selected the anchor by placing a class on it. I feel like the code is easier to read and skim when you have divs that outline what is going on. It is a matter of personal choice. It will work either way with a little CSS tweaking.</p>
<p>That is all there is to it. <a href="/contact">Let me know</a> if you have any other web elements you would like to see explained or if you have any questions.</p>
<p><a href="/examples/SimpleFeedbackButton.html" target="_blank">Feedback button example</a></p>



Share with friends:


	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fmediaformations.com%2Fcreating-a-simple-feedback-button%2F&amp;title=Creating%20a%20simple%20feedback%20button&amp;notes=%0D%0A%0D%0AA%20trend%20that%20has%20becoming%20more%20popular%20is%20having%20a%20floating%20feedback%20button%20on%20your%20home%20page%20so%20you%20can%20take%20advantage%20of%20your%20visitors%20opinion.%20The%20button%20can%20link%20to%20a%20form%20where%20the%20user%20can%20express%20their%20thoughts%20about%20the%20site%20or%20a%20page%20tha" title="del.icio.us"><img src="http://mediaformations.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fmediaformations.com%2Fcreating-a-simple-feedback-button%2F&amp;title=Creating%20a%20simple%20feedback%20button&amp;bodytext=%0D%0A%0D%0AA%20trend%20that%20has%20becoming%20more%20popular%20is%20having%20a%20floating%20feedback%20button%20on%20your%20home%20page%20so%20you%20can%20take%20advantage%20of%20your%20visitors%20opinion.%20The%20button%20can%20link%20to%20a%20form%20where%20the%20user%20can%20express%20their%20thoughts%20about%20the%20site%20or%20a%20page%20tha" title="Digg"><img src="http://mediaformations.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fmediaformations.com%2Fcreating-a-simple-feedback-button%2F&amp;t=Creating%20a%20simple%20feedback%20button" title="Facebook"><img src="http://mediaformations.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fmediaformations.com%2Fcreating-a-simple-feedback-button%2F&amp;title=Creating%20a%20simple%20feedback%20button" title="Mixx"><img src="http://mediaformations.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fmediaformations.com%2Fcreating-a-simple-feedback-button%2F&amp;title=Creating%20a%20simple%20feedback%20button" title="DZone"><img src="http://mediaformations.com/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.friendfeed.com/share?title=Creating%20a%20simple%20feedback%20button&amp;link=http%3A%2F%2Fmediaformations.com%2Fcreating-a-simple-feedback-button%2F" title="FriendFeed"><img src="http://mediaformations.com/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fmediaformations.com%2Fcreating-a-simple-feedback-button%2F&amp;title=Creating%20a%20simple%20feedback%20button&amp;source=MediaFormations+Welcome+to+Media+Formations&amp;summary=%0D%0A%0D%0AA%20trend%20that%20has%20becoming%20more%20popular%20is%20having%20a%20floating%20feedback%20button%20on%20your%20home%20page%20so%20you%20can%20take%20advantage%20of%20your%20visitors%20opinion.%20The%20button%20can%20link%20to%20a%20form%20where%20the%20user%20can%20express%20their%20thoughts%20about%20the%20site%20or%20a%20page%20tha" title="LinkedIn"><img src="http://mediaformations.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.propeller.com/submit/?url=http%3A%2F%2Fmediaformations.com%2Fcreating-a-simple-feedback-button%2F" title="Propeller"><img src="http://mediaformations.com/wp-content/plugins/sociable/images/propeller.png" title="Propeller" alt="Propeller" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fmediaformations.com%2Fcreating-a-simple-feedback-button%2F&amp;title=Creating%20a%20simple%20feedback%20button" title="Reddit"><img src="http://mediaformations.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fmediaformations.com%2Fcreating-a-simple-feedback-button%2F&amp;title=Creating%20a%20simple%20feedback%20button" title="StumbleUpon"><img src="http://mediaformations.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://mediaformations.com/feed/" title="RSS"><img src="http://mediaformations.com/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://mediaformations.com/creating-a-simple-feedback-button/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Accordion Tables with Jquery</title>
		<link>http://mediaformations.com/accordion-tables-with-jquery/</link>
		<comments>http://mediaformations.com/accordion-tables-with-jquery/#comments</comments>
		<pubDate>Fri, 17 Jul 2009 14:00:09 +0000</pubDate>
		<dc:creator>Jonathan</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://mediaformations.com/?p=223</guid>
		<description><![CDATA[This idea of collapsing tables came to me while trying to retrofit a Lotus Domino web application with better usability. The main principal is to use Jquery to hide part of the table when a specific cell or row is clicked. Peek at the final product. There are several really great Jquery html integration tutorials on [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-238" title="Heading" src="http://mediaformations.com/wp-content/uploads/2009/07/Heading.jpg" alt="Heading" width="520" height="182" /></p>
<p>This idea of collapsing tables came to me while trying to retrofit a Lotus Domino web application with better usability. The main principal is to use Jquery to hide part of the table when a specific cell or row is clicked.<a href="http://mediaformations.com/examples/AccordionTableExample.html" target="_blank"></a></p>
<p><a href="http://mediaformations.com/examples/AccordionTableExample.html" target="_blank">Peek at the final product.</a></p>
<p>There are several really great Jquery html integration tutorials on the web. In fact <a href="http://net.tutsplus.com/tutorials/javascript-ajax/using-jquery-to-manipulate-and-filter-data/" target="_blank">this</a> is a really great one. The previously linked page details how to setup Jquery to easily create zebra rows, row hover effect and row filtering. I will be showing you something a little different but equally easy to setup.</p>
<p>I will be setting up a table so that when you click on the head row the body will collapse or hide. This sounds pretty easy if you have a little Jquery knowledge but I am going to show you a few things that make the effect easy to reproduce when you do not know how many tables you will end up with. The main problem that I was having with the Lotus web application was that the tables was being created dynamically. Some times there might be 3 tables and sometimes there might be 10. Also I had nested tables which complicates things a little. I will explain more as we get into it. So lets start.</p>
<p><span id="more-223"></span></p>
<p>First we are going to need a table. I am going to assume you know how to create a table in html. There are a few important parts. The table needs a head section and a body section.</p>
<p><img class="aligncenter size-full wp-image-237" title="SingleTable" src="http://mediaformations.com/wp-content/uploads/2009/07/SingleTable.png" alt="SingleTable" width="520" height="140" /></p>
<pre>&lt;table class="StateTable" rules="all" cellpadding="0" cellspacing="0"&gt;
   &lt;thead&gt;     &lt;!--You need to have a table head section--&gt;
      &lt;tr class="statetablerow"&gt;
         &lt;th&gt;Missouri&lt;/th&gt;     &lt;!--Use "th" tags for your table heading cells--&gt;
         &lt;th&gt;Type&lt;/th&gt;
         &lt;th&gt;Users&lt;/th&gt;
      &lt;/tr&gt;
   &lt;/thead&gt;     &lt;!--Close the table head section--&gt;
   &lt;tbody&gt;     &lt;!--Open the table body section--&gt;
      &lt;tr&gt;
         &lt;td&gt;&lt;/td&gt;     &lt;!--Use normal "td" tags for the body cells--&gt;
         &lt;td&gt;Admin&lt;/td&gt;
         &lt;td&gt;User Name #1&lt;/td&gt;
      &lt;/tr&gt;
      &lt;tr&gt;
         &lt;td&gt;&lt;/td&gt;
         &lt;td&gt;Reader&lt;/td&gt;
         &lt;td&gt;User Name #2&lt;/td&gt;
      &lt;/tr&gt;
      &lt;tr&gt;
         &lt;td&gt;&lt;/td&gt;
         &lt;td&gt;Reader&lt;/td&gt;
         &lt;td&gt;User Name #3&lt;/td&gt;
      &lt;/tr&gt;
   &lt;/tbody&gt;
&lt;/table&gt;</pre>
<p>We are going to nest a new table inside the last row of the first table. We need to create a new row and a single cell that spans all the columns of the table. With a nested table the code should look like this.</p>
<p><img class="aligncenter size-full wp-image-236" title="NestedTable" src="http://mediaformations.com/wp-content/uploads/2009/07/NestedTable.png" alt="NestedTable" width="520" height="281" /></p>
<pre>&lt;table class="StateTable" rules="all" cellpadding="0" cellspacing="0"&gt;
   &lt;thead&gt;
      &lt;tr class="statetablerow"&gt;
         &lt;th&gt;Missouri&lt;/th&gt;
         &lt;th&gt;Type&lt;/th&gt;
         &lt;th&gt;Users&lt;/th&gt;
      &lt;/tr&gt;
   &lt;/thead&gt;
   &lt;tbody&gt;
      &lt;tr&gt;
         &lt;td&gt;&lt;/td&gt;
         &lt;td&gt;Admin&lt;/td&gt;
         &lt;td&gt;User Name #1&lt;/td&gt;
      &lt;/tr&gt;
      &lt;tr&gt;
         &lt;td&gt;&lt;/td&gt;
         &lt;td&gt;Reader&lt;/td&gt;
         &lt;td&gt;User Name #2&lt;/td&gt;
      &lt;/tr&gt;
      &lt;tr&gt;
         &lt;td&gt;&lt;/td&gt;
         &lt;td&gt;Reader&lt;/td&gt;
         &lt;td&gt;User Name #3&lt;/td&gt;
      &lt;/tr&gt;
      &lt;tr colspan="3"&gt;     &lt;!--Added row for the nested table--&gt;
         &lt;td&gt;
            &lt;table class="CityTable" rules="all" cellpadding="0" cellspacing="0"&gt;     &lt;!--Start of the nested table--&gt;
               &lt;thead&gt;
                  &lt;tr&gt;
                     &lt;th&gt;St. Louis&lt;/th&gt;
                     &lt;th&gt;Type&lt;/th&gt;
                     &lt;th&gt;Users&lt;/th&gt;
                  &lt;/tr&gt;
               &lt;/thead&gt;
               &lt;tbody&gt;
                  &lt;tr&gt;
                     &lt;td&gt;&lt;/td&gt;
                     &lt;td&gt;Admin&lt;/td&gt;
                     &lt;td&gt;User Name #1&lt;/td&gt;
                  &lt;/tr&gt;
                  &lt;tr&gt;
                     &lt;td&gt;&lt;/td&gt;
                     &lt;td&gt;Reader&lt;/td&gt;
                     &lt;td&gt;User Name #2&lt;/td&gt;
                  &lt;/tr&gt;
                  &lt;tr&gt;
                     &lt;td&gt;&lt;/td&gt;
                     &lt;td&gt;Reader&lt;/td&gt;
                     &lt;td&gt;User Name #3&lt;/td&gt;
                 &lt;/tr&gt;
              &lt;/tbody&gt;
           &lt;/table&gt;
        &lt;/td&gt;
     &lt;/tr&gt;
   &lt;/tbody&gt;
&lt;/table&gt;</pre>
<p>Ok now for the fun stuff. With the correct ground work setup we can now implement our Jquery JavaScript code. The first thing to do is link the Jquery library. You can do this by linking directly from Googles code server, from Jquery or download and host your own copy. I chose to link from Google. This code goes in the head section of your page.</p>
<pre>&lt;script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"&gt;&lt;/script&gt;</pre>
<p>You may have noticed that both of my tables have classes applied to them. This is so we can determine if the user clicked on the outer or inner table. If you have multiple inner tables they would have the same class. We now have to create the javascript that Jquery will use. I will start with the inner city table.</p>
<pre>$('table.CityTable th') .click(
	function() {
		$(this) .parents('table.CityTable') .children('tbody') .toggle();
	}
)</pre>
<p>That is it, not much to it. This needs to go into a Document.ready function so it will be loaded when the page is finished loaded. See Jquery documentation if you do not know what I am talking about. To help you understand I will go over this line by line.</p>
<dl>
<dt>$(&#8216;table.CityTable th&#8217;) .click(</dt>
<dd>This line starts the Jquery function. It tells Jquery to find the css element &#8220;<em>table.CityTable th</em>&#8221; or a header cell inside a table that has the class of CityTable. Then because elements in one line are executed right after each other the &#8220;<em>.click</em>&#8221; tells Jquery to add a click event to the previous css element.</dd>
<dt>function() {</dt>
<dd>This line opens the function that will happen when the click event is triggered.</dd>
<dt>$(this) .parents(&#8216;table.CityTable&#8217;) .children(&#8216;tbody&#8217;) .toggle();</dt>
<dd>This is where the magic happens. It is a long one so I will try and explain each part. When the click event goes off it will trigger this line. Start with a Jquery function as before but instead of putting the css element we want to use we put the text &#8220;<em>this</em>&#8220;. &#8220;<em>This</em>&#8221; refers to the element being used in the triggering function, which is &#8220;<em>table.CityTable th</em>&#8220;.</dd>
<dd>Then we apply the selector &#8220;<em>.parents()</em>&#8221; which tells Jquery to look for the previous element that is &#8220;<em>table.CityTable</em>&#8220;. Effectively we are now selecting the css element &#8220;<em>table.CityTable</em>&#8221; where the click happened. So if you have more than one table with this element you will only select the table were the user clicked. However our main objective is to had the body of the table when the user clicks on the header.</dd>
<dd>With the table now selected we need to continue and select just the body. This happens with the &#8220;<em>.children()</em>&#8221; selector. It tells Jquery to look for the next &#8220;<em>tbody</em>&#8221; tag within the previous element. Now we have effectively selected the css element &#8220;<em>table.CityTable tbody</em>&#8221; within the table where the click happened.</dd>
<dd>Finally with the right element selected we can hide it. Jquery has a simple function for this called &#8220;<em>.toggle()</em>&#8220;. If no properties are passed to this function it just hides the selected element by applying a style of display:none.</dd>
<dt>} )</dt>
<dd>This is what&#8217;s left. It closes the inner function and the click event.</dd>
</dl>
<p>Now the outer table has very similar code however because you select elements via CSS it can be tricky to pick the correct selector. If you use &#8220;table.StateTable th&#8221; you end up selecting not only the row you intended but also the other &#8220;th&#8221; cells in the nested table. That is because the before mentioned selector picks any and all &#8220;th&#8221; tags within the &#8220;StateTable&#8221; class. We can get around this by adding a class to the header row of the outer tables header row. This will keep our selector with the row that has the &#8220;.statetablerow&#8221; class.</p>
<pre>$('table.StateTable tr.statetablerow th') .click(
	function() {
		$(this) .parents('table.StateTable') .children('tbody') .toggle();
	}
)</pre>
<p>This is extremely similar to the inner table code. The best part is because we used the parents and children selectors we avoid having to create code for each table we want to have the effect. Also it allows you to use the same code over multiple pages or for any number of tables on the same page. Add some css to make things look a little nicer and you are all set.</p>
<p>Here is an example of the effect. I have listed the css and javascript in the document. Use firebug or your favorite code inspector.</p>
<p><a href="http://mediaformations.com/examples/AccordionTableExample.html" target="_blank">Accordion Table Example</a></p>



Share with friends:


	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fmediaformations.com%2Faccordion-tables-with-jquery%2F&amp;title=Accordion%20Tables%20with%20Jquery&amp;notes=%0D%0A%0D%0AThis%20idea%20of%20collapsing%20tables%20came%20to%20me%20while%20trying%20to%20retrofit%20a%20Lotus%20Domino%20web%20application%20with%C2%A0better%20usability.%20The%20main%20principal%20is%20to%20use%20Jquery%20to%20hide%20part%20of%20the%20table%20when%20a%20specific%20cell%20or%20row%20is%20clicked.%0D%0A%0D%0APeek%20at%20the%20final%20p" title="del.icio.us"><img src="http://mediaformations.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fmediaformations.com%2Faccordion-tables-with-jquery%2F&amp;title=Accordion%20Tables%20with%20Jquery&amp;bodytext=%0D%0A%0D%0AThis%20idea%20of%20collapsing%20tables%20came%20to%20me%20while%20trying%20to%20retrofit%20a%20Lotus%20Domino%20web%20application%20with%C2%A0better%20usability.%20The%20main%20principal%20is%20to%20use%20Jquery%20to%20hide%20part%20of%20the%20table%20when%20a%20specific%20cell%20or%20row%20is%20clicked.%0D%0A%0D%0APeek%20at%20the%20final%20p" title="Digg"><img src="http://mediaformations.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fmediaformations.com%2Faccordion-tables-with-jquery%2F&amp;t=Accordion%20Tables%20with%20Jquery" title="Facebook"><img src="http://mediaformations.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fmediaformations.com%2Faccordion-tables-with-jquery%2F&amp;title=Accordion%20Tables%20with%20Jquery" title="Mixx"><img src="http://mediaformations.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fmediaformations.com%2Faccordion-tables-with-jquery%2F&amp;title=Accordion%20Tables%20with%20Jquery" title="DZone"><img src="http://mediaformations.com/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.friendfeed.com/share?title=Accordion%20Tables%20with%20Jquery&amp;link=http%3A%2F%2Fmediaformations.com%2Faccordion-tables-with-jquery%2F" title="FriendFeed"><img src="http://mediaformations.com/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fmediaformations.com%2Faccordion-tables-with-jquery%2F&amp;title=Accordion%20Tables%20with%20Jquery&amp;source=MediaFormations+Welcome+to+Media+Formations&amp;summary=%0D%0A%0D%0AThis%20idea%20of%20collapsing%20tables%20came%20to%20me%20while%20trying%20to%20retrofit%20a%20Lotus%20Domino%20web%20application%20with%C2%A0better%20usability.%20The%20main%20principal%20is%20to%20use%20Jquery%20to%20hide%20part%20of%20the%20table%20when%20a%20specific%20cell%20or%20row%20is%20clicked.%0D%0A%0D%0APeek%20at%20the%20final%20p" title="LinkedIn"><img src="http://mediaformations.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.propeller.com/submit/?url=http%3A%2F%2Fmediaformations.com%2Faccordion-tables-with-jquery%2F" title="Propeller"><img src="http://mediaformations.com/wp-content/plugins/sociable/images/propeller.png" title="Propeller" alt="Propeller" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fmediaformations.com%2Faccordion-tables-with-jquery%2F&amp;title=Accordion%20Tables%20with%20Jquery" title="Reddit"><img src="http://mediaformations.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fmediaformations.com%2Faccordion-tables-with-jquery%2F&amp;title=Accordion%20Tables%20with%20Jquery" title="StumbleUpon"><img src="http://mediaformations.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://mediaformations.com/feed/" title="RSS"><img src="http://mediaformations.com/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://mediaformations.com/accordion-tables-with-jquery/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>NextGen gallery effects not working</title>
		<link>http://mediaformations.com/nextgen-gallery-effects-not-working/</link>
		<comments>http://mediaformations.com/nextgen-gallery-effects-not-working/#comments</comments>
		<pubDate>Wed, 15 Jul 2009 18:00:13 +0000</pubDate>
		<dc:creator>Jonathan</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://mediaformations.com/?p=198</guid>
		<description><![CDATA[After doing some redesigning on this site I noticed that my NextGen gallery effects (ie. thickbox, lightbox) stopped working. When you clicked on an image it would link you directly to the jpeg image. I was getting very frustrated but after some research it turns out I was missing a very important line of code [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="size-full wp-image-208  aligncenter" title="NextGen Screen Shot" src="http://mediaformations.com/wp-content/uploads/2009/07/screenshot-2.jpg" alt="NextGen Screen Shot" width="400" height="205" /></p>
<p>After doing some redesigning on this site I noticed that my NextGen gallery effects (ie. thickbox, lightbox) stopped working. When you clicked on an image it would link you directly to the jpeg image. I was getting very frustrated but after some research it turns out I was missing a very important line of code in my footer. I needed to add the php line &#8220;<strong>wp_footer();</strong>&#8221; to my footer file.</p>
<p>From WordPress <a href="http://codex.wordpress.org/Theme_Development" target="_blank" >Theme Development</a> Page:</p>
<blockquote><p>Goes in the &#8220;footer&#8221; of a theme; <tt>footer.php</tt> template. Example plugin use: insert PHP code that needs to run after everything else, at the bottom of the footer.</p>
<dl>
<dd> Usage: <tt>&lt;?php do_action('wp_footer'); ?&gt;</tt> </dd>
<dd><em>-or-</em> <tt>&lt;?php wp_footer(); ?&gt;</tt> </dd>
</dl>
</blockquote>
<p>This creates a space for wordpress to add code into your footer. NextGen gallery adds the thickbox javascript links in the footer so they are called at the end of a page load. If you are having the same problem try added the footer code to your theme.</p>



Share with friends:


	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fmediaformations.com%2Fnextgen-gallery-effects-not-working%2F&amp;title=NextGen%20gallery%20effects%20not%20working&amp;notes=%0D%0A%0D%0AAfter%20doing%20some%20redesigning%20on%20this%20site%20I%20noticed%20that%20my%20NextGen%20gallery%20effects%20%28ie.%20thickbox%2C%20lightbox%29%20stopped%20working.%20When%20you%20clicked%20on%20an%20image%20it%20would%20link%20you%20directly%20to%20the%20jpeg%20image.%20I%20was%20getting%20very%20frustrated%20but%20after%20some%20" title="del.icio.us"><img src="http://mediaformations.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fmediaformations.com%2Fnextgen-gallery-effects-not-working%2F&amp;title=NextGen%20gallery%20effects%20not%20working&amp;bodytext=%0D%0A%0D%0AAfter%20doing%20some%20redesigning%20on%20this%20site%20I%20noticed%20that%20my%20NextGen%20gallery%20effects%20%28ie.%20thickbox%2C%20lightbox%29%20stopped%20working.%20When%20you%20clicked%20on%20an%20image%20it%20would%20link%20you%20directly%20to%20the%20jpeg%20image.%20I%20was%20getting%20very%20frustrated%20but%20after%20some%20" title="Digg"><img src="http://mediaformations.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fmediaformations.com%2Fnextgen-gallery-effects-not-working%2F&amp;t=NextGen%20gallery%20effects%20not%20working" title="Facebook"><img src="http://mediaformations.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fmediaformations.com%2Fnextgen-gallery-effects-not-working%2F&amp;title=NextGen%20gallery%20effects%20not%20working" title="Mixx"><img src="http://mediaformations.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fmediaformations.com%2Fnextgen-gallery-effects-not-working%2F&amp;title=NextGen%20gallery%20effects%20not%20working" title="DZone"><img src="http://mediaformations.com/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.friendfeed.com/share?title=NextGen%20gallery%20effects%20not%20working&amp;link=http%3A%2F%2Fmediaformations.com%2Fnextgen-gallery-effects-not-working%2F" title="FriendFeed"><img src="http://mediaformations.com/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fmediaformations.com%2Fnextgen-gallery-effects-not-working%2F&amp;title=NextGen%20gallery%20effects%20not%20working&amp;source=MediaFormations+Welcome+to+Media+Formations&amp;summary=%0D%0A%0D%0AAfter%20doing%20some%20redesigning%20on%20this%20site%20I%20noticed%20that%20my%20NextGen%20gallery%20effects%20%28ie.%20thickbox%2C%20lightbox%29%20stopped%20working.%20When%20you%20clicked%20on%20an%20image%20it%20would%20link%20you%20directly%20to%20the%20jpeg%20image.%20I%20was%20getting%20very%20frustrated%20but%20after%20some%20" title="LinkedIn"><img src="http://mediaformations.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.propeller.com/submit/?url=http%3A%2F%2Fmediaformations.com%2Fnextgen-gallery-effects-not-working%2F" title="Propeller"><img src="http://mediaformations.com/wp-content/plugins/sociable/images/propeller.png" title="Propeller" alt="Propeller" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fmediaformations.com%2Fnextgen-gallery-effects-not-working%2F&amp;title=NextGen%20gallery%20effects%20not%20working" title="Reddit"><img src="http://mediaformations.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fmediaformations.com%2Fnextgen-gallery-effects-not-working%2F&amp;title=NextGen%20gallery%20effects%20not%20working" title="StumbleUpon"><img src="http://mediaformations.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://mediaformations.com/feed/" title="RSS"><img src="http://mediaformations.com/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://mediaformations.com/nextgen-gallery-effects-not-working/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Palm Pre Unboxing</title>
		<link>http://mediaformations.com/palm-pre-unboxing/</link>
		<comments>http://mediaformations.com/palm-pre-unboxing/#comments</comments>
		<pubDate>Sat, 13 Jun 2009 04:07:56 +0000</pubDate>
		<dc:creator>Jonathan</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://mediaformations.com/?p=171</guid>
		<description><![CDATA[I was unable to get a Palm Pre on launch day for reasons that are out of my control. Apparently Sprint as a very strict upgrade policy with new phones of this caliber. Even a long time subscriber like myself was unable to sway them into upgrading me early. Needless to say I still got [...]]]></description>
			<content:encoded><![CDATA[
<a href="http://mediaformations.com/wp-content/gallery/palm-pre/pre-1.jpg" title="" class="shutterset_singlepic92" >
	<img class="ngg-singlepic ngg-center" src="http://mediaformations.com/wp-content/gallery/cache/92__320x240_pre-1.jpg" alt="pre-1.jpg" title="pre-1.jpg" />
</a>

<p>I was unable to get a Palm Pre on launch day for reasons that are out of my control. Apparently Sprint as a very strict upgrade policy with new phones of this caliber. Even a long time subscriber like myself was unable to sway them into upgrading me early. Needless to say I still got my hands on a Palm Pre today and took some photos of the unboxing. Please check out the gallery after the break .</p>
<p><span id="more-171"></span></p>




<div class="ngg-galleryoverview" id="ngg-gallery-12">







	

	<!-- Thumbnails -->

	
	

	<div id="ngg-image-92" class="ngg-gallery-thumbnail-box"  >

		<div class="ngg-gallery-thumbnail-posts" >

			<a href="http://mediaformations.com/wp-content/gallery/palm-pre/pre-1.jpg" title=" " class="shutterset_set_12" >

				<img title="pre-1.jpg" alt="pre-1.jpg" src="http://mediaformations.com/wp-content/gallery/palm-pre/thumbs/thumbs_pre-1.jpg" width="125" height="94" />

			</a>

		</div>

	</div>

	
 	
	

	<div id="ngg-image-103" class="ngg-gallery-thumbnail-box"  >

		<div class="ngg-gallery-thumbnail-posts" >

			<a href="http://mediaformations.com/wp-content/gallery/palm-pre/pre-2.jpg" title=" " class="shutterset_set_12" >

				<img title="pre-2.jpg" alt="pre-2.jpg" src="http://mediaformations.com/wp-content/gallery/palm-pre/thumbs/thumbs_pre-2.jpg" width="125" height="94" />

			</a>

		</div>

	</div>

	
 	
	

	<div id="ngg-image-114" class="ngg-gallery-thumbnail-box"  >

		<div class="ngg-gallery-thumbnail-posts" >

			<a href="http://mediaformations.com/wp-content/gallery/palm-pre/pre-3.jpg" title=" " class="shutterset_set_12" >

				<img title="pre-3.jpg" alt="pre-3.jpg" src="http://mediaformations.com/wp-content/gallery/palm-pre/thumbs/thumbs_pre-3.jpg" width="125" height="94" />

			</a>

		</div>

	</div>

	
 	
	

	<div id="ngg-image-119" class="ngg-gallery-thumbnail-box"  >

		<div class="ngg-gallery-thumbnail-posts" >

			<a href="http://mediaformations.com/wp-content/gallery/palm-pre/pre-4.jpg" title=" " class="shutterset_set_12" >

				<img title="pre-4.jpg" alt="pre-4.jpg" src="http://mediaformations.com/wp-content/gallery/palm-pre/thumbs/thumbs_pre-4.jpg" width="125" height="94" />

			</a>

		</div>

	</div>

	
 	
	

	<div id="ngg-image-120" class="ngg-gallery-thumbnail-box"  >

		<div class="ngg-gallery-thumbnail-posts" >

			<a href="http://mediaformations.com/wp-content/gallery/palm-pre/pre-5.jpg" title=" " class="shutterset_set_12" >

				<img title="pre-5.jpg" alt="pre-5.jpg" src="http://mediaformations.com/wp-content/gallery/palm-pre/thumbs/thumbs_pre-5.jpg" width="125" height="94" />

			</a>

		</div>

	</div>

	
 	
	

	<div id="ngg-image-121" class="ngg-gallery-thumbnail-box"  >

		<div class="ngg-gallery-thumbnail-posts" >

			<a href="http://mediaformations.com/wp-content/gallery/palm-pre/pre-6.jpg" title=" " class="shutterset_set_12" >

				<img title="pre-6.jpg" alt="pre-6.jpg" src="http://mediaformations.com/wp-content/gallery/palm-pre/thumbs/thumbs_pre-6.jpg" width="125" height="94" />

			</a>

		</div>

	</div>

	
 	
	

	<div id="ngg-image-122" class="ngg-gallery-thumbnail-box"  >

		<div class="ngg-gallery-thumbnail-posts" >

			<a href="http://mediaformations.com/wp-content/gallery/palm-pre/pre-7.jpg" title=" " class="shutterset_set_12" >

				<img title="pre-7.jpg" alt="pre-7.jpg" src="http://mediaformations.com/wp-content/gallery/palm-pre/thumbs/thumbs_pre-7.jpg" width="125" height="94" />

			</a>

		</div>

	</div>

	
 	
	

	<div id="ngg-image-123" class="ngg-gallery-thumbnail-box"  >

		<div class="ngg-gallery-thumbnail-posts" >

			<a href="http://mediaformations.com/wp-content/gallery/palm-pre/pre-8.jpg" title=" " class="shutterset_set_12" >

				<img title="pre-8.jpg" alt="pre-8.jpg" src="http://mediaformations.com/wp-content/gallery/palm-pre/thumbs/thumbs_pre-8.jpg" width="125" height="94" />

			</a>

		</div>

	</div>

	
 	
	

	<div id="ngg-image-124" class="ngg-gallery-thumbnail-box"  >

		<div class="ngg-gallery-thumbnail-posts" >

			<a href="http://mediaformations.com/wp-content/gallery/palm-pre/pre-9.jpg" title=" " class="shutterset_set_12" >

				<img title="pre-9.jpg" alt="pre-9.jpg" src="http://mediaformations.com/wp-content/gallery/palm-pre/thumbs/thumbs_pre-9.jpg" width="125" height="94" />

			</a>

		</div>

	</div>

	
 	
	

	<div id="ngg-image-93" class="ngg-gallery-thumbnail-box"  >

		<div class="ngg-gallery-thumbnail-posts" >

			<a href="http://mediaformations.com/wp-content/gallery/palm-pre/pre-10.jpg" title=" " class="shutterset_set_12" >

				<img title="pre-10.jpg" alt="pre-10.jpg" src="http://mediaformations.com/wp-content/gallery/palm-pre/thumbs/thumbs_pre-10.jpg" width="125" height="94" />

			</a>

		</div>

	</div>

	
 	
	

	<div id="ngg-image-94" class="ngg-gallery-thumbnail-box"  >

		<div class="ngg-gallery-thumbnail-posts" >

			<a href="http://mediaformations.com/wp-content/gallery/palm-pre/pre-11.jpg" title=" " class="shutterset_set_12" >

				<img title="pre-11.jpg" alt="pre-11.jpg" src="http://mediaformations.com/wp-content/gallery/palm-pre/thumbs/thumbs_pre-11.jpg" width="125" height="94" />

			</a>

		</div>

	</div>

	
 	
	

	<div id="ngg-image-95" class="ngg-gallery-thumbnail-box"  >

		<div class="ngg-gallery-thumbnail-posts" >

			<a href="http://mediaformations.com/wp-content/gallery/palm-pre/pre-12.jpg" title=" " class="shutterset_set_12" >

				<img title="pre-12.jpg" alt="pre-12.jpg" src="http://mediaformations.com/wp-content/gallery/palm-pre/thumbs/thumbs_pre-12.jpg" width="125" height="94" />

			</a>

		</div>

	</div>

	
 	
	

	<div id="ngg-image-96" class="ngg-gallery-thumbnail-box"  >

		<div class="ngg-gallery-thumbnail-posts" >

			<a href="http://mediaformations.com/wp-content/gallery/palm-pre/pre-13.jpg" title=" " class="shutterset_set_12" >

				<img title="pre-13.jpg" alt="pre-13.jpg" src="http://mediaformations.com/wp-content/gallery/palm-pre/thumbs/thumbs_pre-13.jpg" width="125" height="94" />

			</a>

		</div>

	</div>

	
 	
	

	<div id="ngg-image-97" class="ngg-gallery-thumbnail-box"  >

		<div class="ngg-gallery-thumbnail-posts" >

			<a href="http://mediaformations.com/wp-content/gallery/palm-pre/pre-14.jpg" title=" " class="shutterset_set_12" >

				<img title="pre-14.jpg" alt="pre-14.jpg" src="http://mediaformations.com/wp-content/gallery/palm-pre/thumbs/thumbs_pre-14.jpg" width="125" height="94" />

			</a>

		</div>

	</div>

	
 	
	

	<div id="ngg-image-98" class="ngg-gallery-thumbnail-box"  >

		<div class="ngg-gallery-thumbnail-posts" >

			<a href="http://mediaformations.com/wp-content/gallery/palm-pre/pre-15.jpg" title=" " class="shutterset_set_12" >

				<img title="pre-15.jpg" alt="pre-15.jpg" src="http://mediaformations.com/wp-content/gallery/palm-pre/thumbs/thumbs_pre-15.jpg" width="125" height="94" />

			</a>

		</div>

	</div>

	
 	
	

	<div id="ngg-image-99" class="ngg-gallery-thumbnail-box"  >

		<div class="ngg-gallery-thumbnail-posts" >

			<a href="http://mediaformations.com/wp-content/gallery/palm-pre/pre-16.jpg" title=" " class="shutterset_set_12" >

				<img title="pre-16.jpg" alt="pre-16.jpg" src="http://mediaformations.com/wp-content/gallery/palm-pre/thumbs/thumbs_pre-16.jpg" width="125" height="94" />

			</a>

		</div>

	</div>

	
 	
	

	<div id="ngg-image-100" class="ngg-gallery-thumbnail-box"  >

		<div class="ngg-gallery-thumbnail-posts" >

			<a href="http://mediaformations.com/wp-content/gallery/palm-pre/pre-17.jpg" title=" " class="shutterset_set_12" >

				<img title="pre-17.jpg" alt="pre-17.jpg" src="http://mediaformations.com/wp-content/gallery/palm-pre/thumbs/thumbs_pre-17.jpg" width="125" height="94" />

			</a>

		</div>

	</div>

	
 	
	

	<div id="ngg-image-101" class="ngg-gallery-thumbnail-box"  >

		<div class="ngg-gallery-thumbnail-posts" >

			<a href="http://mediaformations.com/wp-content/gallery/palm-pre/pre-18.jpg" title=" " class="shutterset_set_12" >

				<img title="pre-18.jpg" alt="pre-18.jpg" src="http://mediaformations.com/wp-content/gallery/palm-pre/thumbs/thumbs_pre-18.jpg" width="125" height="94" />

			</a>

		</div>

	</div>

	
 	
 	

	<!-- Pagination -->

 	<div class='ngg-navigation'><span>1</span><a class="page-numbers" href="http://mediaformations.com/palm-pre-unboxing/?nggpage=2">2</a><a class="next" id="ngg-next-2" href="http://mediaformations.com/palm-pre-unboxing/?nggpage=2">&#9658;</a></div>
 	

</div>







Share with friends:


	<a rel="nofollow"  target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fmediaformations.com%2Fpalm-pre-unboxing%2F&amp;title=Palm%20Pre%20Unboxing&amp;notes=%0D%0A%0D%0AI%20was%20unable%20to%20get%20a%20Palm%20Pre%20on%20launch%20day%20for%20reasons%20that%20are%20out%20of%20my%20control.%20Apparently%20Sprint%20as%20a%20very%20strict%20upgrade%20policy%20with%20new%20phones%20of%20this%20caliber.%20Even%20a%20long%20time%20subscriber%20like%20myself%20was%20unable%20to%20sway%20them%20into%20upgrading" title="del.icio.us"><img src="http://mediaformations.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fmediaformations.com%2Fpalm-pre-unboxing%2F&amp;title=Palm%20Pre%20Unboxing&amp;bodytext=%0D%0A%0D%0AI%20was%20unable%20to%20get%20a%20Palm%20Pre%20on%20launch%20day%20for%20reasons%20that%20are%20out%20of%20my%20control.%20Apparently%20Sprint%20as%20a%20very%20strict%20upgrade%20policy%20with%20new%20phones%20of%20this%20caliber.%20Even%20a%20long%20time%20subscriber%20like%20myself%20was%20unable%20to%20sway%20them%20into%20upgrading" title="Digg"><img src="http://mediaformations.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fmediaformations.com%2Fpalm-pre-unboxing%2F&amp;t=Palm%20Pre%20Unboxing" title="Facebook"><img src="http://mediaformations.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fmediaformations.com%2Fpalm-pre-unboxing%2F&amp;title=Palm%20Pre%20Unboxing" title="Mixx"><img src="http://mediaformations.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.dzone.com/links/add.html?url=http%3A%2F%2Fmediaformations.com%2Fpalm-pre-unboxing%2F&amp;title=Palm%20Pre%20Unboxing" title="DZone"><img src="http://mediaformations.com/wp-content/plugins/sociable/images/dzone.png" title="DZone" alt="DZone" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.friendfeed.com/share?title=Palm%20Pre%20Unboxing&amp;link=http%3A%2F%2Fmediaformations.com%2Fpalm-pre-unboxing%2F" title="FriendFeed"><img src="http://mediaformations.com/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fmediaformations.com%2Fpalm-pre-unboxing%2F&amp;title=Palm%20Pre%20Unboxing&amp;source=MediaFormations+Welcome+to+Media+Formations&amp;summary=%0D%0A%0D%0AI%20was%20unable%20to%20get%20a%20Palm%20Pre%20on%20launch%20day%20for%20reasons%20that%20are%20out%20of%20my%20control.%20Apparently%20Sprint%20as%20a%20very%20strict%20upgrade%20policy%20with%20new%20phones%20of%20this%20caliber.%20Even%20a%20long%20time%20subscriber%20like%20myself%20was%20unable%20to%20sway%20them%20into%20upgrading" title="LinkedIn"><img src="http://mediaformations.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.propeller.com/submit/?url=http%3A%2F%2Fmediaformations.com%2Fpalm-pre-unboxing%2F" title="Propeller"><img src="http://mediaformations.com/wp-content/plugins/sociable/images/propeller.png" title="Propeller" alt="Propeller" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://reddit.com/submit?url=http%3A%2F%2Fmediaformations.com%2Fpalm-pre-unboxing%2F&amp;title=Palm%20Pre%20Unboxing" title="Reddit"><img src="http://mediaformations.com/wp-content/plugins/sociable/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fmediaformations.com%2Fpalm-pre-unboxing%2F&amp;title=Palm%20Pre%20Unboxing" title="StumbleUpon"><img src="http://mediaformations.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>
	<a rel="nofollow"  target="_blank" href="http://mediaformations.com/feed/" title="RSS"><img src="http://mediaformations.com/wp-content/plugins/sociable/images/rss.png" title="RSS" alt="RSS" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://mediaformations.com/palm-pre-unboxing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
