<?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>Danny Giebe - Webdesigner and Frontend-Developer</title>
	<atom:link href="http://www.giebegraphics.de/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.giebegraphics.de</link>
	<description>Webdesign Berlin, Germany</description>
	<lastBuildDate>Tue, 03 Apr 2012 08:23:58 +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>Gekko Global Markets</title>
		<link>http://www.giebegraphics.de/portfolio/2011/gekko-global-markets/</link>
		<comments>http://www.giebegraphics.de/portfolio/2011/gekko-global-markets/#comments</comments>
		<pubDate>Sat, 26 Nov 2011 20:10:52 +0000</pubDate>
		<dc:creator>Danny</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.giebegraphics.de/?p=143</guid>
		<description><![CDATA[Actually I'm working as Frontend-Developer for FeatureFarm to develop Gekko Markets.]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.giebegraphics.de/wp-content/uploads/2011/11/Gekko-Global-Markets-Spread-Betting-Forex-CFD-CFD-trading-Trading.png" alt="Gekko Global Markets" title="Gekko Global Markets" width="585" height="734" class="alignnone size-full wp-image-165" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.giebegraphics.de/portfolio/2011/gekko-global-markets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS3 transition slideshow tutorial</title>
		<link>http://www.giebegraphics.de/coding/2011/css3-transition-slideshow-tutorial/</link>
		<comments>http://www.giebegraphics.de/coding/2011/css3-transition-slideshow-tutorial/#comments</comments>
		<pubDate>Sun, 10 Jul 2011 13:53:19 +0000</pubDate>
		<dc:creator>Danny</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[modernizr]]></category>
		<category><![CDATA[slider]]></category>
		<category><![CDATA[slideshow]]></category>
		<category><![CDATA[transition]]></category>
		<category><![CDATA[vertical]]></category>

		<guid isPermaLink="false">http://www.giebegraphics.de/?p=138</guid>
		<description><![CDATA[With the rollout of some new CSS3 techniques, many effects can be displayed without Javascript or graphics. In this tutorial we'll create a simple vertical CSS3 slideshow with a transition effect.]]></description>
			<content:encoded><![CDATA[<p>With the rollout of some new CSS3 techniques, many effects can be displayed without Javascript or graphics. Among other things, CSS3 brought the transition efffects, which are very useful to solve simple animations without Javascript.</p>
<p>In this tutorial we&#8217;ll create a simple vertical CSS3 slideshow with a transition effect.<br />
We&#8217;ll also use Modernizr for older browsers.</p>
<h3>HTML</h3>
<p>To begin, we need a simple HTML structure.</p>
<pre class="brush: xml; title: ; notranslate">
&lt;!DOCTYPE html&gt;
&lt;html&gt;
&lt;head&gt;
  &lt;meta charset=&quot;UTF-8&quot;&gt;
  &lt;title&gt;CSS3 transition slider&lt;/title&gt;
&lt;/head&gt;
&lt;body&gt;
  &lt;div id=&quot;container&quot;&gt;
  &lt;/div&gt;
&lt;/body&gt;
&lt;/html&gt;
</pre>
<p>Now we build our slider structure in the div#container. Therefore we need a container for the images and a navigation to switch between our pictures.</p>
<pre class="brush: xml; title: ; notranslate">
&lt;div id=&quot;slider&quot;&gt;
&lt;div id=&quot;slide-items&quot;&gt;&lt;img src=&quot;images/1.jpg&quot; alt=&quot;Leaf&quot; /&gt;
 &lt;img src=&quot;images/2.jpg&quot; alt=&quot;Bird&quot; /&gt;
 &lt;img src=&quot;images/3.jpg&quot; alt=&quot;Wave&quot; /&gt;
 &lt;img src=&quot;images/4.jpg&quot; alt=&quot;Corn&quot; /&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;nav&gt;
&lt;ul&gt;
	&lt;li&gt;&lt;span id=&quot;item-1&quot;&gt;1&lt;/span&gt;&lt;/li&gt;
	&lt;li&gt;&lt;span id=&quot;item-2&quot;&gt;2&lt;/span&gt;&lt;/li&gt;
	&lt;li&gt;&lt;span id=&quot;item-3&quot;&gt;3&lt;/span&gt;&lt;/li&gt;
	&lt;li&gt;&lt;span id=&quot;item-4&quot;&gt;4&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/nav&gt;
</pre>
<h3>CSS</h3>
<p>For now that&#8217;s all for our HTML structure. Now we will add some CSS styles to our elements. First of all we will center our container and add some extra styles, such as padding, width etc. You can also use your own styles for it.</p>
<pre class="brush: css; title: ; notranslate">
#container {
  width: 950px;
  margin: 0 auto; /* centers the container */
  padding-top: 150px;
}
</pre>
<p>So let&#8217;s start with the important code for our slider. We will add some styles to our #slider and our #slide-items.</p>
<pre class="brush: css; title: ; notranslate">
#slider {
  width: 950px; /* width of our pics */
  height: 300px; /* height of our pics */
  position: relative; /* type of position */
  overflow: hidden; /* shows only the first pic */
}
#slide-items {
  width: 950px; /* width of our pics */
  height: 300px; /* height of our pics */
  position: absolute; /* position in #slider */
  left: 0; /* on top left edge */
  top: 0;
  /* now the transition effects */
  -webkit-transition: all 3s ease-in-out;
  -moz-transition: all 3s ease-in-out;
  -o-transition: all 3s ease-in-out;
  -ms-transition: all 3s ease-in-out;
  -transition: all 3s ease-in-out;
}
/* removing margin &amp; padding */
#slide-items img {
  margin: 0;
  padding: 0;
}
</pre>
<p>As you can see we added some transition effects to our image container. But what does it mean?</p>
<p>CSS3 transitions defining smoothing value changes in your stylesheets. We used the shorthand version with 3 values.</p>
<p>all &#8211; defines our transition property. The transition property defines which css element is used for the transition. So you could also use one property e.g. color, background or font-size to change them smoothly.<br />
 3s &#8211; defines our transition-duration. The transition duration  says how long the transition should last.<br />
 ease-in-out &#8211; defines our transtion-timing-function. The transition timing function describes how the intermediate values used during a transition will be calculated. Therefore you can choose between different functions: ease, ease-in, ease-out, ease-in-out, linear and cubic-bezier. You are free to play around with the settings.</p>
<p>Now we will add the styles for our slider navigation. We will use little bullets as navigation.</p>
<pre class="brush: css; title: ; notranslate">
nav {
  float: right;
  margin: 15px;
}
nav ul {
  list-style: none;
}
nav ul li {
  cursor: pointer;
  margin-right: 10px;
  float: left;
}
nav ul li span {
  text-indent: -9999em;
  display: block;
  width: 15px;
  height: 15px;
  background: #ccc;
  border-radius: 10px;
}
ul li span.active {
  background: #999;
  box-shadow: inset 1px 1px 4px #666;
}
</pre>
<h3>jQuery</h3>
<p>Now we&#8217;re done with our styling and the HTML structure. We&#8217;ll add some Javascript and jQuery to animate the whole construction. Therefore we will also get help of Modernizr for older browsers. We need to add jQuery and modernizr in our html head.</p>
<pre class="brush: xml; title: ; notranslate">
&lt;!DOCTYPE html&gt;
&lt;html&gt;
&lt;head&gt;
  &lt;meta charset=&quot;UTF-8&quot;&gt;
  &lt;title&gt;CSS3 transition slider&lt;/title&gt;
  &lt;script type=&quot;text/javascript&quot; src=&quot;https://ajax.googleapis.com/ajax/
  libs/jquery/1.6.1/jquery.min.js&quot;&gt;&lt;/script&gt;
  &lt;script type=&quot;text/javascript&quot; src=&quot;modernizr.js&quot;&gt;&lt;/script&gt;
&lt;/head&gt;
&lt;body&gt;
  &lt;div id=&quot;container&quot;&gt;
    &lt;div id=&quot;slider&quot;&gt;
      &lt;div id=&quot;slide-items&quot;&gt;
        &lt;img src=&quot;images/1.jpg&quot; alt=&quot;Leaf&quot; /&gt;
        &lt;img src=&quot;images/2.jpg&quot; alt=&quot;Bird&quot; /&gt;
        &lt;img src=&quot;images/3.jpg&quot; alt=&quot;Wave&quot; /&gt;
        &lt;img src=&quot;images/4.jpg&quot; alt=&quot;Corn&quot; /&gt;
      &lt;/div&gt;
    &lt;/div&gt;
    &lt;nav&gt;
      &lt;ul&gt;
        &lt;li&gt;&lt;span id=&quot;item-1&quot;&gt;1&lt;/span&gt;&lt;/li&gt;
        &lt;li&gt;&lt;span id=&quot;item-2&quot;&gt;2&lt;/span&gt;&lt;/li&gt;
        &lt;li&gt;&lt;span id=&quot;item-3&quot;&gt;3&lt;/span&gt;&lt;/li&gt;
        &lt;li&gt;&lt;span id=&quot;item-4&quot;&gt;4&lt;/span&gt;&lt;/li&gt;
      &lt;/ul&gt;
    &lt;/nav&gt;
  &lt;/div&gt;
&lt;/body&gt;
&lt;/html&gt;
</pre>
<p>For the animation effect we will add some jQuery code:</p>
<pre class="brush: jscript; title: ; notranslate">
(function($){
  // toggle active class for nav element
  $('ul li span').click(function(){
    $('span').removeClass('active');
    $(this).addClass('active');
  });

  // We use modernizr to ask, if our browser supports css transitions. If true, we just change the position with css. The smooth animation effect will be done with the css3 transitions.
  if (Modernizr.csstransitions){
    $('#item-1').click(function(){
      $('#slide-items').css('top', '0');
    });
    $('#item-2').click(function(){
      $('#slide-items').css('top', '-304px');
    });
    $('#item-3').click(function(){
      $('#slide-items').css('top', '-608px');
    });
    $('#item-4').click(function(){
      $('#slide-items').css('top', '-912px');
    });

   // If our browser does not support csstransitions we have to animate the position, which has nearly the same effect as css3 transitions.
   } else {
    $('#item-1').click(function(){
      $('#slide-items').animate({
        top: '0',
      }, 3000);
    });
    $('#item-2').click(function(){
      $('#slide-items').animate({
        top: '-304px',
      }, 3000);
    });
    $('#item-3').click(function(){
      $('#slide-items').animate({
        top: '-608px',
      }, 3000);
    });
    $('#item-4').click(function(){
      $('#slide-items').animate({
        top: '-912px',
      }, 3000);
    });
  }
})(jQuery);
</pre>
<p>In this case we added a vertical slide effect. You can also change the position to right or left and change the value, depending on your image width.<br />
So we&#8217;re done. I hope you liked the short tutorial and it&#8217;s useful for you. Maybe you&#8217;re starting to use transition effects for future projects.</p>
<p><a id="demo" href="http://www.giebe-graphics.com/demo/css3-slideshow/index.html">View Demo</a> <a id="download" href="http://www.giebe-graphics.com/demo/css3-slideshow/css3-slideshow.zip">Download source</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.giebegraphics.de/coding/2011/css3-transition-slideshow-tutorial/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Working with sprites, using webtools</title>
		<link>http://www.giebegraphics.de/coding/2011/working-with-sprites-using-webtools/</link>
		<comments>http://www.giebegraphics.de/coding/2011/working-with-sprites-using-webtools/#comments</comments>
		<pubDate>Thu, 07 Jul 2011 20:02:04 +0000</pubDate>
		<dc:creator>Danny</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[online tools]]></category>
		<category><![CDATA[server request]]></category>
		<category><![CDATA[sprites]]></category>
		<category><![CDATA[website speed]]></category>

		<guid isPermaLink="false">http://www.giebegraphics.de/?p=135</guid>
		<description><![CDATA[As you know, many websites are using lots of images for their layout. Many of them still don't use sprite images and so they have more server requests, which increases the loading time of a website. To optimize your website speed with sprites you could use the following two online tools.]]></description>
			<content:encoded><![CDATA[<p>As you know, many websites are using lots of images for their layout. Many of them still don&#8217;t use sprite images and so they have more server requests, which increases the loading time of a website. To optimize your website speed you should definitly use sprites if possible. Sometimes in some cases it makes no sense, but you should use the sprite technique as much as possible.</p>
<p>Today I found some very useful online tools to build sprites very easily for your website.</p>
<p>The first one, called <a title="SpriteMe" href="http://spriteme.org/" target="_blank">SpriteMe</a> is a bookmarklet for your browser. You just need to <a title="SpriteMe" href="http://spriteme.org/" target="_blank">go to their website</a> and follow the install guide. It&#8217;s pretty easy with drag and drop. After your drag and drop action you can open your website and click on your new SpriteMe bookmarklet. A little window will open, which shows you all used images on your page. Now you can just drag&amp;drop the images, which shall be in a sprite and click &#8220;make sprite&#8221;. You will get an image in a new window, which can be downloaded. There is just one bad thing: All images are among each other. If you have a programm e.g. Photoshop or GIMP you can optimize the saved sprite a little bit. Sometimes it&#8217;s not really necessary.</p>
<p>Now we can use the second tool, called <a title="Sprite Cow" href="http://www.spritecow.com/" target="_blank">Sprite Cow</a> to get the css code of each image in your sprite. Go to <a title="Sprite Cow" href="http://www.spritecow.com/" target="_blank">Sprite Cow</a> and click &#8220;Open Image&#8221; and choose your saved sprite image. Your sprite will be loaded and you can easily select a part of your sprite to get the background-position in the sprite. Just copy each position to your css code and it&#8217;s perfectly done.</p>
<p>It&#8217;s a pretty easy and awesome way to get a sprite image and to decrease your server requests. Furthermore you save a lot of time while development, because you don&#8217;t need to find out the positions by yourself with a graphic programm.</p>
<p>If you have any questions, don&#8217;t hesitate to use the comment form.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.giebegraphics.de/coding/2011/working-with-sprites-using-webtools/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Welcome to my new website</title>
		<link>http://www.giebegraphics.de/general/2011/new-website/</link>
		<comments>http://www.giebegraphics.de/general/2011/new-website/#comments</comments>
		<pubDate>Tue, 05 Jul 2011 19:19:37 +0000</pubDate>
		<dc:creator>Danny</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.giebegraphics.de/?p=131</guid>
		<description><![CDATA[Hello and welcome to my new website. After some development time I have now managed to finish it. The website has a new design and is based on HTML5 now.]]></description>
			<content:encoded><![CDATA[<p>Hello and welcome to my new website. After some development time I have now managed to finish it. The website has a new design and is based on HTML5 now. Another new feature is the mobile version. The website has been completely adapted for mobile use and thus offers the possibility to go to read the latest blog posts and comments.</p>
<p>In the future I will write about the main topics coding and web design, including new web technologies (HTML5, CSS3), jQuery, and also on news from the web scene. I hope there will be lively discussions in the comments in the future and enough exchanges of opinions take place among all visitors.</p>
<p>Now the baptizing of the new blog is completed and new posts will be published at regular intervals.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.giebegraphics.de/general/2011/new-website/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>ETFlab</title>
		<link>http://www.giebegraphics.de/portfolio/2011/etflab/</link>
		<comments>http://www.giebegraphics.de/portfolio/2011/etflab/#comments</comments>
		<pubDate>Sat, 02 Jul 2011 20:31:34 +0000</pubDate>
		<dc:creator>Danny</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.giebegraphics.de/?p=118</guid>
		<description><![CDATA[At ETFlab i'm working as Frontend-Developer for klug newmedia.]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.giebegraphics.de/wp-content/uploads/2011/07/etflab1.png" alt="ETFlab" title="ETFlab" width="585" height="1169" class="alignnone size-full wp-image-120" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.giebegraphics.de/portfolio/2011/etflab/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RBS &#8211; marketindex</title>
		<link>http://www.giebegraphics.de/portfolio/2011/rbs/</link>
		<comments>http://www.giebegraphics.de/portfolio/2011/rbs/#comments</comments>
		<pubDate>Sat, 02 Jul 2011 20:18:53 +0000</pubDate>
		<dc:creator>Danny</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.giebegraphics.de/?p=113</guid>
		<description><![CDATA[At marketindex I'm working as one of the Frontend-Developers for klug newmedia.]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone  wp-image-115" title="RBS marketindex" src="http://www.giebegraphics.de/wp-content/uploads/2012/03/marketindex-_-Home.png" alt="RBS marketindex" width="585" height="806" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.giebegraphics.de/portfolio/2011/rbs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Beckmann Massmann</title>
		<link>http://www.giebegraphics.de/portfolio/2011/beckmann-massmann-2/</link>
		<comments>http://www.giebegraphics.de/portfolio/2011/beckmann-massmann-2/#comments</comments>
		<pubDate>Wed, 22 Jun 2011 20:41:50 +0000</pubDate>
		<dc:creator>Danny</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.giebegraphics.de/?p=86</guid>
		<description><![CDATA[Beckmann and Massmann advises small and medium businesses, and individuals in all legal matters.]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.giebegraphics.de/wp-content/uploads/2011/06/beckmann2.png" alt="Beckmann - Massmann Rechtsanwälte" title="Beckmann - Massmann" width="585" height="515" class="alignnone size-full wp-image-48" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.giebegraphics.de/portfolio/2011/beckmann-massmann-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>EVR</title>
		<link>http://www.giebegraphics.de/portfolio/2011/evr/</link>
		<comments>http://www.giebegraphics.de/portfolio/2011/evr/#comments</comments>
		<pubDate>Wed, 22 Jun 2011 20:39:56 +0000</pubDate>
		<dc:creator>Danny</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.giebegraphics.de/?p=84</guid>
		<description><![CDATA[EVR is a event agency, based in Cologne. They organize Incentives, Work-Life-Balance programs and tours to international events e.g.: Football World Cup, Formula 1 etc.]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.giebegraphics.de/wp-content/uploads/2011/06/evr.jpg" alt="EVR" title="EVR" width="585" height="547" class="alignnone size-full wp-image-112" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.giebegraphics.de/portfolio/2011/evr/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Klinik Denzel</title>
		<link>http://www.giebegraphics.de/portfolio/2011/klinik-denzel/</link>
		<comments>http://www.giebegraphics.de/portfolio/2011/klinik-denzel/#comments</comments>
		<pubDate>Wed, 22 Jun 2011 20:35:17 +0000</pubDate>
		<dc:creator>Danny</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.giebegraphics.de/?p=82</guid>
		<description><![CDATA[In the Klinik Denzel people with psychiatric and neurological disorders find help and support for many years.]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.giebegraphics.de/wp-content/uploads/2011/06/klinik-denzel.jpg" alt="Klinik Denzel" title="Klinik Denzel" width="585" height="582" class="alignnone size-full wp-image-108" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.giebegraphics.de/portfolio/2011/klinik-denzel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>cssruby</title>
		<link>http://www.giebegraphics.de/portfolio/2011/cssruby/</link>
		<comments>http://www.giebegraphics.de/portfolio/2011/cssruby/#comments</comments>
		<pubDate>Wed, 22 Jun 2011 20:33:01 +0000</pubDate>
		<dc:creator>Danny</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.giebegraphics.de/?p=80</guid>
		<description><![CDATA[cssruby is a personal project. It's a css showcase gallery for some selected webdesigns. If you want, you can submit your page.]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.giebegraphics.de/wp-content/uploads/2011/06/cssruby.jpg" alt="cssruby" title="cssruby" width="585" height="560" class="alignnone size-full wp-image-106" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.giebegraphics.de/portfolio/2011/cssruby/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wiener Cafehaus</title>
		<link>http://www.giebegraphics.de/portfolio/2011/wiener-cafehaus-2/</link>
		<comments>http://www.giebegraphics.de/portfolio/2011/wiener-cafehaus-2/#comments</comments>
		<pubDate>Wed, 22 Jun 2011 20:27:57 +0000</pubDate>
		<dc:creator>Danny</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.giebegraphics.de/?p=78</guid>
		<description><![CDATA[In the Wiener Cafehaus you can enjoy the traditional Viennese coffee house culture and original Viennese restaurant kitchen.]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.giebegraphics.de/wp-content/uploads/2011/06/wienercafehaus-luebeck.jpg" alt="Wienercafehaus Lübeck" title="Wienercafehaus Lübeck" width="585" height="490" class="alignnone size-full wp-image-104" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.giebegraphics.de/portfolio/2011/wiener-cafehaus-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jungschartag Horkheim</title>
		<link>http://www.giebegraphics.de/portfolio/2011/jungschartag-horkheim/</link>
		<comments>http://www.giebegraphics.de/portfolio/2011/jungschartag-horkheim/#comments</comments>
		<pubDate>Wed, 22 Jun 2011 19:22:08 +0000</pubDate>
		<dc:creator>Danny</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.giebegraphics.de/?p=76</guid>
		<description><![CDATA[The Jungschartag is an evangelical children's festival in Heilbronn, which annually attracts hundreds of kids games, fun and joy.]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.giebegraphics.de/wp-content/uploads/2011/08/jst.png" alt="Jungschartag Horkheim 2011" title="Jungschartag Horkheim 2011" width="585" height="690" class="alignnone size-full wp-image-102" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.giebegraphics.de/portfolio/2011/jungschartag-horkheim/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Müther Bestattungen</title>
		<link>http://www.giebegraphics.de/portfolio/2011/muther-bestattungen-2/</link>
		<comments>http://www.giebegraphics.de/portfolio/2011/muther-bestattungen-2/#comments</comments>
		<pubDate>Wed, 22 Jun 2011 19:15:03 +0000</pubDate>
		<dc:creator>Danny</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.giebegraphics.de/?p=74</guid>
		<description><![CDATA[Müther Bestattungen offers all services needed for burial since more than 80 years.]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.giebegraphics.de/wp-content/uploads/2011/06/muether-bestattungen.jpg" alt="Müther Bestattungen" title="Müther Bestattungen" width="585" height="514" class="alignnone size-full wp-image-100" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.giebegraphics.de/portfolio/2011/muther-bestattungen-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Das verrückte Brillenhaus</title>
		<link>http://www.giebegraphics.de/portfolio/2011/das-verruckte-brillenhaus-2/</link>
		<comments>http://www.giebegraphics.de/portfolio/2011/das-verruckte-brillenhaus-2/#comments</comments>
		<pubDate>Wed, 22 Jun 2011 19:09:37 +0000</pubDate>
		<dc:creator>Danny</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.giebegraphics.de/?p=72</guid>
		<description><![CDATA[Das verrückte Brillenhaus exists since more than 25 years and offers glasses from Prada, Gucci, Giorgio Armani and more.]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.giebegraphics.de/wp-content/uploads/2011/06/brillenhaus-nuernberg.jpg" alt="Das verrückte Brillenhaus" title="Das verrückte Brillenhaus" width="585" height="703" class="alignnone size-full wp-image-99" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.giebegraphics.de/portfolio/2011/das-verruckte-brillenhaus-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lutzke Heuhotel</title>
		<link>http://www.giebegraphics.de/portfolio/2011/lutzke-heuhotel/</link>
		<comments>http://www.giebegraphics.de/portfolio/2011/lutzke-heuhotel/#comments</comments>
		<pubDate>Wed, 22 Jun 2011 19:06:33 +0000</pubDate>
		<dc:creator>Danny</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.giebegraphics.de/?p=70</guid>
		<description><![CDATA[Lutzke Heuhotel is a rural hotel with a rustic style with the ability to sleep in hay beds.]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.giebegraphics.de/wp-content/uploads/2011/06/lutzke-heuhotel.jpg" alt="Lutzke Heuhotel" title="Lutzke Heuhotel" width="585" height="696" class="alignnone size-full wp-image-97" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.giebegraphics.de/portfolio/2011/lutzke-heuhotel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rasthof Lehrtersee</title>
		<link>http://www.giebegraphics.de/portfolio/2011/rasthof-lehrtersee-2/</link>
		<comments>http://www.giebegraphics.de/portfolio/2011/rasthof-lehrtersee-2/#comments</comments>
		<pubDate>Wed, 22 Jun 2011 18:55:07 +0000</pubDate>
		<dc:creator>Danny</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.giebegraphics.de/?p=68</guid>
		<description><![CDATA[Rasthof Lehrtersee provides food for the hungry on the way and facilities for meetings.]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.giebegraphics.de/wp-content/uploads/2011/06/lehrtersee2.png" alt="Rasthof Lehrtersee" title="Rasthof Lehrtersee" width="585" height="686" class="alignnone size-full wp-image-95" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.giebegraphics.de/portfolio/2011/rasthof-lehrtersee-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bialy Finanz</title>
		<link>http://www.giebegraphics.de/portfolio/2011/bialy-finanz-2/</link>
		<comments>http://www.giebegraphics.de/portfolio/2011/bialy-finanz-2/#comments</comments>
		<pubDate>Wed, 22 Jun 2011 18:42:24 +0000</pubDate>
		<dc:creator>Danny</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.giebegraphics.de/?p=66</guid>
		<description><![CDATA[Rico Bialy is a financial consultant in the financial sector pension plans, real estate, investments and mutual funds and more.]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.giebegraphics.de/wp-content/uploads/2011/06/bialy-finanz.png" alt="Bialy Finanz" title="Bialy Finanz" width="585" height="517" class="alignnone size-full wp-image-93" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.giebegraphics.de/portfolio/2011/bialy-finanz-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rechtsanwalt Boele</title>
		<link>http://www.giebegraphics.de/portfolio/2011/rechtsanwalt-boele/</link>
		<comments>http://www.giebegraphics.de/portfolio/2011/rechtsanwalt-boele/#comments</comments>
		<pubDate>Wed, 22 Jun 2011 18:39:45 +0000</pubDate>
		<dc:creator>Danny</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.giebegraphics.de/?p=64</guid>
		<description><![CDATA[Dr. Boele is lawyer for copyright and press law, based in Munich, Germany.]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.giebegraphics.de/wp-content/uploads/2011/06/ra-boele.png" alt="Rechtsanwalt Boele" title="Rechtsanwalt Boele" width="585" height="602" class="size-full wp-image-91" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.giebegraphics.de/portfolio/2011/rechtsanwalt-boele/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>specht bave</title>
		<link>http://www.giebegraphics.de/portfolio/2011/specht-bave/</link>
		<comments>http://www.giebegraphics.de/portfolio/2011/specht-bave/#comments</comments>
		<pubDate>Wed, 22 Jun 2011 18:36:20 +0000</pubDate>
		<dc:creator>Danny</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.giebegraphics.de/?p=62</guid>
		<description><![CDATA[Specht Bave is specialized in building renovation, scaffolding, painting and more.]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.giebegraphics.de/wp-content/uploads/2011/06/specht.jpg" alt="specht" title="specht" width="585" height="746" class="alignnone size-full wp-image-89" /><br />
<img src="http://www.giebegraphics.de/wp-content/uploads/2011/06/bave.jpg" alt="bave" title="bave" width="585" height="719" class="alignnone size-full wp-image-90" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.giebegraphics.de/portfolio/2011/specht-bave/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Yo-Shop</title>
		<link>http://www.giebegraphics.de/portfolio/2011/yo-shop/</link>
		<comments>http://www.giebegraphics.de/portfolio/2011/yo-shop/#comments</comments>
		<pubDate>Wed, 22 Jun 2011 18:32:44 +0000</pubDate>
		<dc:creator>Danny</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.giebegraphics.de/?p=60</guid>
		<description><![CDATA[Yo-Shop is a german webshop for yoyos and accessoires from the european yoyo champion.]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.giebegraphics.de/wp-content/uploads/2011/06/yoshop1.png" alt="Webshop for Yoyos" title="Yo-Shop" width="585" height="550" class="size-full wp-image-88" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.giebegraphics.de/portfolio/2011/yo-shop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

