<?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>{ radak.org }</title>
	<atom:link href="http://www.radak.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.radak.org</link>
	<description>just another (tech) blog</description>
	<lastBuildDate>Sat, 13 Feb 2010 15:37:00 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>iPhone segédlet 2: érintés feldolgozása, kép mentése</title>
		<link>http://www.radak.org/2010/02/13/iphone-segedlet-2-erintes-feldolgozasa-kep-mentese/</link>
		<comments>http://www.radak.org/2010/02/13/iphone-segedlet-2-erintes-feldolgozasa-kep-mentese/#comments</comments>
		<pubDate>Sat, 13 Feb 2010 15:34:59 +0000</pubDate>
		<dc:creator>lion</dc:creator>
				<category><![CDATA[iPhone examples]]></category>

		<guid isPermaLink="false">http://www.radak.org/?p=307</guid>
		<description><![CDATA[Ez a segédlet az idő hiánya miatt inkább csak felsorolás szintű lesz, viszont az lesz benne, amit a legtöbben kérdeztek eddig:
- képernyő érintésének lekezelése (touchesBegan, touchesMoved, touchesEnded)
- kép lementése a Camera Roll -ba (UIImageWriteToSavedPhotosAlbum, drawRect)

1. A képernyő érintése (A kódot UIViewController-ben kell elhelyezni!)
 Az iPhone (és persze a Touch) készülékek multi touch-osak, ez azt jelenti, [...]]]></description>
			<content:encoded><![CDATA[<p>Ez a segédlet az idő hiánya miatt inkább csak felsorolás szintű lesz, viszont az lesz benne, amit a legtöbben kérdeztek eddig:<br />
- képernyő érintésének lekezelése (touchesBegan, touchesMoved, touchesEnded)<br />
- kép lementése a Camera Roll -ba (UIImageWriteToSavedPhotosAlbum, drawRect)<br />
<span id="more-307"></span><br />
<strong>1. A képernyő érintése <em>(A kódot UIViewController-ben kell elhelyezni!)</em></strong></p>
<ul> Az iPhone (és persze a Touch) készülékek multi touch-osak, ez azt jelenti, hogy egyszerre több érintési pontot is le tudnak kezelni.<br />
Legtöbbször elég csak az első érintéssel foglalkoznunk, most így is fogom bemutatni, viszont a minta kódrészletek alapján egyszerű lesz átírni a multi funkcióra.</ul>
<ul> Alapvetően három fontos esemény van, amivel érdemes foglalkozni:<br />
<strong><em>touchesBegan</em></strong>: az érintés kezdete<br />
Ez az esemény akkor következik be, amikor hozzáérünk a kijelzőhöz.<br />
<strong><em>touchesMoved</em></strong>: a képernyőn az ujjunk mozgása<br />
Ez egy folyamatosan frissülő esemény, amikor a képernyőn mozgatjuk az ujjunkat.<br />
<em>(Itt érdemes meggondolni, hogy milyen mintavételezéssel futtatjuk a touchesMoved-ban elhelyezett kódot, illetve hogy minél rövidebb kódot használjunk!)<br />
</em><strong><em>touchesEnded</em></strong>: az érintés vége<br />
Ez az esemény akkor következik be, ha elengedjük a kijelzőt.<br />
Ha csak egy pillanatra rábökünk a kijelzőre, akkor is a touchesBegan után ez az esemény mindig bekövetkezik!<br />
<em>(Én azt tapasztaltam, hogy ha rá kell kattintani valamire és nem sikerül elsőre eltalálni, akkor az emberek többsége a ujj mozgtásával megkeresik a megfelelő pontot és ott engedik el a kijelzőt, ezért érdemes itt feldolgozni minden olyan eseményt, ami csak egy egyszerű kattintásnak felel meg!)</em></p>

<div class="wp_syntax"><div class="code"><pre class="c" style="font-family:monospace;"><span style="color: #339933;">-</span> <span style="color: #009900;">&#40;</span><span style="color: #993333;">void</span><span style="color: #009900;">&#41;</span>touchesBegan<span style="color: #339933;">:</span><span style="color: #009900;">&#40;</span>NSSet <span style="color: #339933;">*</span><span style="color: #009900;">&#41;</span>touches withEvent<span style="color: #339933;">:</span><span style="color: #009900;">&#40;</span>UIEvent <span style="color: #339933;">*</span><span style="color: #009900;">&#41;</span>event <span style="color: #009900;">&#123;</span>
  NSSet <span style="color: #339933;">*</span>allTouches <span style="color: #339933;">=</span> <span style="color: #009900;">&#91;</span>event allTouches<span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">// az összes érintés egy tömbben</span>
  UITouch <span style="color: #339933;">*</span>touch <span style="color: #339933;">=</span> <span style="color: #009900;">&#91;</span><span style="color: #009900;">&#91;</span>allTouches allObjects<span style="color: #009900;">&#93;</span> objectAtIndex<span style="color: #339933;">:</span><span style="color: #0000dd;">0</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">// az első érintés</span>
  CGPoint p <span style="color: #339933;">=</span> <span style="color: #009900;">&#91;</span>touch locationInView<span style="color: #339933;">:</span><span style="color: #009900;">&#91;</span>self view<span style="color: #009900;">&#93;</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">// az érintés koordinátái</span>
  NSLog<span style="color: #009900;">&#40;</span>@<span style="color: #ff0000;">&quot;A kezdeti koordináták: %f, %f &quot;</span><span style="color: #339933;">,</span> p.<span style="color: #202020;">x</span><span style="color: #339933;">,</span> p.<span style="color: #202020;">y</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>


<div class="wp_syntax"><div class="code"><pre class="c" style="font-family:monospace;"><span style="color: #339933;">-</span> <span style="color: #009900;">&#40;</span><span style="color: #993333;">void</span><span style="color: #009900;">&#41;</span>touchesMoved<span style="color: #339933;">:</span><span style="color: #009900;">&#40;</span>NSSet <span style="color: #339933;">*</span><span style="color: #009900;">&#41;</span>touches withEvent<span style="color: #339933;">:</span><span style="color: #009900;">&#40;</span>UIEvent <span style="color: #339933;">*</span><span style="color: #009900;">&#41;</span>event <span style="color: #009900;">&#123;</span>
  NSSet <span style="color: #339933;">*</span>allTouches <span style="color: #339933;">=</span> <span style="color: #009900;">&#91;</span>event allTouches<span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">// az összes érintés egy tömbben</span>
  UITouch <span style="color: #339933;">*</span>touch <span style="color: #339933;">=</span> <span style="color: #009900;">&#91;</span><span style="color: #009900;">&#91;</span>allTouches allObjects<span style="color: #009900;">&#93;</span> objectAtIndex<span style="color: #339933;">:</span><span style="color: #0000dd;">0</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">// az első érintés</span>
  CGPoint p <span style="color: #339933;">=</span> <span style="color: #009900;">&#91;</span>touch locationInView<span style="color: #339933;">:</span><span style="color: #009900;">&#91;</span>self view<span style="color: #009900;">&#93;</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">// az érintés koordinátái</span>
  NSLog<span style="color: #009900;">&#40;</span>@<span style="color: #ff0000;">&quot;Mozgás közben az aktuális koordináták: %f, %f &quot;</span><span style="color: #339933;">,</span> p.<span style="color: #202020;">x</span><span style="color: #339933;">,</span> p.<span style="color: #202020;">y</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>


<div class="wp_syntax"><div class="code"><pre class="c" style="font-family:monospace;"><span style="color: #339933;">-</span> <span style="color: #009900;">&#40;</span><span style="color: #993333;">void</span><span style="color: #009900;">&#41;</span>touchesEnded<span style="color: #339933;">:</span><span style="color: #009900;">&#40;</span>NSSet <span style="color: #339933;">*</span><span style="color: #009900;">&#41;</span>touches withEvent<span style="color: #339933;">:</span><span style="color: #009900;">&#40;</span>UIEvent <span style="color: #339933;">*</span><span style="color: #009900;">&#41;</span>event <span style="color: #009900;">&#123;</span>
  NSSet <span style="color: #339933;">*</span>allTouches <span style="color: #339933;">=</span> <span style="color: #009900;">&#91;</span>event allTouches<span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">// az összes érintés egy tömbben</span>
  UITouch <span style="color: #339933;">*</span>touch <span style="color: #339933;">=</span> <span style="color: #009900;">&#91;</span><span style="color: #009900;">&#91;</span>allTouches allObjects<span style="color: #009900;">&#93;</span> objectAtIndex<span style="color: #339933;">:</span><span style="color: #0000dd;">0</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">// az első érintés</span>
  CGPoint p <span style="color: #339933;">=</span> <span style="color: #009900;">&#91;</span>touch locationInView<span style="color: #339933;">:</span><span style="color: #009900;">&#91;</span>self view<span style="color: #009900;">&#93;</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">// az érintés koordinátái</span>
  NSLog<span style="color: #009900;">&#40;</span>@<span style="color: #ff0000;">&quot;Itt engedtem el a kijelzőt: %f, %f &quot;</span><span style="color: #339933;">,</span> p.<span style="color: #202020;">x</span><span style="color: #339933;">,</span> p.<span style="color: #202020;">y</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

</ul>
<p><strong>2. Kép mentése <em>(A kódot UIView-ban kell elhelyezni!)</em></strong></p>
<ul> Második AppStore-os programom az <a href="http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=297684249" target="_blank">iPaint</a> volt, amiben a megrajzolt képet ki lehet menteni a kamera albumba.<br />
A kimetés elég egyszerű, csak arra kell vigyázni, hogy a képet mentés előtt el kell forgatni, mert különben a bitmap fejjel lefelé fog bekerülni az albumba!<br />
Itt egy kicsit átírt kivonat az iPaint-ből, szerintem a kommentek elég beszédesek:</p>

<div class="wp_syntax"><div class="code"><pre class="c" style="font-family:monospace;"><span style="color: #339933;">-</span> <span style="color: #009900;">&#40;</span><span style="color: #993333;">void</span><span style="color: #009900;">&#41;</span>drawRect<span style="color: #339933;">:</span><span style="color: #009900;">&#40;</span>CGRect<span style="color: #009900;">&#41;</span>rect <span style="color: #009900;">&#123;</span>
	CGFloat _Color<span style="color: #009900;">&#91;</span><span style="color: #0000dd;">4</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #009900;">&#123;</span> <span style="color: #0000dd;">255</span><span style="color: #339933;">,</span><span style="color: #0000dd;">0</span><span style="color: #339933;">,</span><span style="color: #0000dd;">0</span><span style="color: #339933;">,</span><span style="color: #0000dd;">1</span> <span style="color: #009900;">&#125;</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">// piros szín</span>
	CGMutablePathRef path <span style="color: #339933;">=</span> CGPathCreateMutable<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">// ebben a path-ban tároljuk a megjelenítendő vonalakat, pontokat</span>
	CGContextRef context <span style="color: #339933;">=</span> UIGraphicsGetCurrentContext<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">// az aktuális rajz felület lekérdezése (alap esetben teljes képernyő)</span>
&nbsp;
	<span style="color: #666666; font-style: italic;">// kép elforgatása, hogy a camera roll-ban jó legyen</span>
	<span style="color: #666666; font-style: italic;">// ezt akkor kell megtenni, ha lementjuk a képet, különben egy if-et tegyünk elé és ne forgassuk, mert a kijelzőn is megfordul!</span>
	CGContextTranslateCTM<span style="color: #009900;">&#40;</span>context<span style="color: #339933;">,</span> <span style="color: #0000dd;">0</span><span style="color: #339933;">,</span> self.<span style="color: #202020;">bounds</span>.<span style="color: #202020;">size</span>.<span style="color: #202020;">height</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	CGContextScaleCTM<span style="color: #009900;">&#40;</span>context<span style="color: #339933;">,</span> <span style="color:#800080;">1.0</span><span style="color: #339933;">,</span> <span style="color: #339933;">-</span><span style="color:#800080;">1.0</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>	
&nbsp;
	<span style="color: #666666; font-style: italic;">// felveszünk egy 3 pixel vastagságú piros vonalat</span>
	CGContextSetLineWidth<span style="color: #009900;">&#40;</span>context<span style="color: #339933;">,</span> <span style="color:#800080;">3.0</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	CGContextSetStrokeColor<span style="color: #009900;">&#40;</span>context<span style="color: #339933;">,</span> _Color<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	CGPathMoveToPoint<span style="color: #009900;">&#40;</span>path<span style="color: #339933;">,</span> nil<span style="color: #339933;">,</span> <span style="color:#800080;">5.0</span><span style="color: #339933;">,</span> <span style="color:#800080;">5.0</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	CGPathAddLineToPoint<span style="color: #009900;">&#40;</span>path<span style="color: #339933;">,</span> nil<span style="color: #339933;">,</span> <span style="color:#800080;">100.0</span><span style="color: #339933;">,</span> <span style="color:#800080;">100.0</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	CGContextAddPath<span style="color: #009900;">&#40;</span>context<span style="color: #339933;">,</span> path<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #666666; font-style: italic;">// kirajzoljuk a képernyőre a path tartalmát (most a piros vonal van benne)</span>
	CGContextStrokePath<span style="color: #009900;">&#40;</span>context<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #666666; font-style: italic;">// elmentjük a képet</span>
	UIGraphicsBeginImageContext<span style="color: #009900;">&#40;</span>self.<span style="color: #202020;">bounds</span>.<span style="color: #202020;">size</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	CGImageRef vImageRef <span style="color: #339933;">=</span> CGBitmapContextCreateImage<span style="color: #009900;">&#40;</span>context<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	CGContextDrawImage<span style="color: #009900;">&#40;</span>UIGraphicsGetCurrentContext<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span> self.<span style="color: #202020;">bounds</span><span style="color: #339933;">,</span> vImageRef<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	UIImage <span style="color: #339933;">*</span>activeImage <span style="color: #339933;">=</span> UIGraphicsGetImageFromCurrentImageContext<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	UIGraphicsEndImageContext<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #666666; font-style: italic;">// a saveEnded saját függvény, a mentés végén meghívjuk</span>
	UIImageWriteToSavedPhotosAlbum<span style="color: #009900;">&#40;</span>activeImage<span style="color: #339933;">,</span> self<span style="color: #339933;">,</span> @selector<span style="color: #009900;">&#40;</span>saveEnded<span style="color: #339933;">:</span>didFinishSavingWithError<span style="color: #339933;">:</span> contextInfo<span style="color: #339933;">:</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">,</span> nil<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
	CGContextFlush<span style="color: #009900;">&#40;</span>context<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #339933;">-</span><span style="color: #009900;">&#40;</span><span style="color: #993333;">void</span><span style="color: #009900;">&#41;</span>saveEnded<span style="color: #339933;">:</span><span style="color: #009900;">&#40;</span>UIImage <span style="color: #339933;">*</span><span style="color: #009900;">&#41;</span>image didFinishSavingWithError<span style="color: #339933;">:</span><span style="color: #009900;">&#40;</span>NSError <span style="color: #339933;">*</span><span style="color: #009900;">&#41;</span>error contextInfo<span style="color: #339933;">:</span><span style="color: #009900;">&#40;</span><span style="color: #993333;">void</span> <span style="color: #339933;">*</span><span style="color: #009900;">&#41;</span>contextInfo<span style="color: #339933;">;</span> <span style="color: #009900;">&#123;</span>
	<span style="color: #666666; font-style: italic;">// Ez akkor fut le, ha a mentés véget ért.</span>
	<span style="color: #666666; font-style: italic;">// Az error-ban megkapjuk, ha valami hiba történt.</span>
	<span style="color: #666666; font-style: italic;">// Itt érdemes értesíteni a felhasználót, hogy vége a mentésnek és itt érdemes törölni a képernyőt is!</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

</ul>
<p>Legközelebb a Shake, a Status Bar és a levél küldése lesz a téma!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.radak.org/2010/02/13/iphone-segedlet-2-erintes-feldolgozasa-kep-mentese/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Képek vegyesen&#8230;</title>
		<link>http://www.radak.org/2010/02/13/kepek-vegyesen/</link>
		<comments>http://www.radak.org/2010/02/13/kepek-vegyesen/#comments</comments>
		<pubDate>Sat, 13 Feb 2010 13:48:04 +0000</pubDate>
		<dc:creator>lion</dc:creator>
				<category><![CDATA[Sára és Dóra]]></category>

		<guid isPermaLink="false">http://www.radak.org/?p=299</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[
<a href="http://www.radak.org/wp-content/gallery/20100213/img_0250.jpg" title="" class="shutterset_singlepic462" >
	<img class="ngg-singlepic" src="http://www.radak.org/wp-content/plugins/nextgen-gallery/nggshow.php?pid=462&amp;width=200&amp;height=150&amp;mode=" alt="img_0250" title="img_0250" />
</a>
<br />
<span id="more-299"></span></p>
<p>
<div class="ngg-galleryoverview" id="ngg-gallery-40-299">


	
	<!-- Thumbnails -->
		
	<div id="ngg-image-447" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100213/img_0582.jpg" title=" " class="shutterset_set_40" >
								<img title="img_0582" alt="img_0582" src="http://www.radak.org/wp-content/gallery/20100213/thumbs/thumbs_img_0582.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-448" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100213/img_0583.jpg" title=" " class="shutterset_set_40" >
								<img title="img_0583" alt="img_0583" src="http://www.radak.org/wp-content/gallery/20100213/thumbs/thumbs_img_0583.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-449" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100213/img_0584.jpg" title=" " class="shutterset_set_40" >
								<img title="img_0584" alt="img_0584" src="http://www.radak.org/wp-content/gallery/20100213/thumbs/thumbs_img_0584.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-450" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100213/img_0585.jpg" title=" " class="shutterset_set_40" >
								<img title="img_0585" alt="img_0585" src="http://www.radak.org/wp-content/gallery/20100213/thumbs/thumbs_img_0585.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-451" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100213/img_0589.jpg" title=" " class="shutterset_set_40" >
								<img title="img_0589" alt="img_0589" src="http://www.radak.org/wp-content/gallery/20100213/thumbs/thumbs_img_0589.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-452" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100213/img_0598.jpg" title=" " class="shutterset_set_40" >
								<img title="img_0598" alt="img_0598" src="http://www.radak.org/wp-content/gallery/20100213/thumbs/thumbs_img_0598.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-453" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100213/img_0599.jpg" title=" " class="shutterset_set_40" >
								<img title="img_0599" alt="img_0599" src="http://www.radak.org/wp-content/gallery/20100213/thumbs/thumbs_img_0599.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-454" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100213/img_0608.jpg" title=" " class="shutterset_set_40" >
								<img title="img_0608" alt="img_0608" src="http://www.radak.org/wp-content/gallery/20100213/thumbs/thumbs_img_0608.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-455" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100213/img_0612.jpg" title=" " class="shutterset_set_40" >
								<img title="img_0612" alt="img_0612" src="http://www.radak.org/wp-content/gallery/20100213/thumbs/thumbs_img_0612.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-456" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100213/img_0613.jpg" title=" " class="shutterset_set_40" >
								<img title="img_0613" alt="img_0613" src="http://www.radak.org/wp-content/gallery/20100213/thumbs/thumbs_img_0613.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-457" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100213/img_0227.jpg" title=" " class="shutterset_set_40" >
								<img title="img_0227" alt="img_0227" src="http://www.radak.org/wp-content/gallery/20100213/thumbs/thumbs_img_0227.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-458" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100213/img_0227_0.jpg" title=" " class="shutterset_set_40" >
								<img title="img_0227_0" alt="img_0227_0" src="http://www.radak.org/wp-content/gallery/20100213/thumbs/thumbs_img_0227_0.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-459" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100213/img_0228.jpg" title=" " class="shutterset_set_40" >
								<img title="img_0228" alt="img_0228" src="http://www.radak.org/wp-content/gallery/20100213/thumbs/thumbs_img_0228.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-460" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100213/img_0235.jpg" title=" " class="shutterset_set_40" >
								<img title="img_0235" alt="img_0235" src="http://www.radak.org/wp-content/gallery/20100213/thumbs/thumbs_img_0235.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-461" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100213/img_0243.jpg" title=" " class="shutterset_set_40" >
								<img title="img_0243" alt="img_0243" src="http://www.radak.org/wp-content/gallery/20100213/thumbs/thumbs_img_0243.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-462" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100213/img_0250.jpg" title=" " class="shutterset_set_40" >
								<img title="img_0250" alt="img_0250" src="http://www.radak.org/wp-content/gallery/20100213/thumbs/thumbs_img_0250.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-463" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100213/img_0270.jpg" title=" " class="shutterset_set_40" >
								<img title="img_0270" alt="img_0270" src="http://www.radak.org/wp-content/gallery/20100213/thumbs/thumbs_img_0270.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-464" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100213/img_0271.jpg" title=" " class="shutterset_set_40" >
								<img title="img_0271" alt="img_0271" src="http://www.radak.org/wp-content/gallery/20100213/thumbs/thumbs_img_0271.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-465" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100213/img_0314.jpg" title=" " class="shutterset_set_40" >
								<img title="img_0314" alt="img_0314" src="http://www.radak.org/wp-content/gallery/20100213/thumbs/thumbs_img_0314.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-466" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100213/img_0318.jpg" title=" " class="shutterset_set_40" >
								<img title="img_0318" alt="img_0318" src="http://www.radak.org/wp-content/gallery/20100213/thumbs/thumbs_img_0318.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-467" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100213/img_0323.jpg" title=" " class="shutterset_set_40" >
								<img title="img_0323" alt="img_0323" src="http://www.radak.org/wp-content/gallery/20100213/thumbs/thumbs_img_0323.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-468" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100213/img_0324.jpg" title=" " class="shutterset_set_40" >
								<img title="img_0324" alt="img_0324" src="http://www.radak.org/wp-content/gallery/20100213/thumbs/thumbs_img_0324.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-469" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100213/img_0327.jpg" title=" " class="shutterset_set_40" >
								<img title="img_0327" alt="img_0327" src="http://www.radak.org/wp-content/gallery/20100213/thumbs/thumbs_img_0327.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-470" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100213/img_0328.jpg" title=" " class="shutterset_set_40" >
								<img title="img_0328" alt="img_0328" src="http://www.radak.org/wp-content/gallery/20100213/thumbs/thumbs_img_0328.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-471" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100213/img_0329.jpg" title=" " class="shutterset_set_40" >
								<img title="img_0329" alt="img_0329" src="http://www.radak.org/wp-content/gallery/20100213/thumbs/thumbs_img_0329.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-472" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100213/img_0330.jpg" title=" " class="shutterset_set_40" >
								<img title="img_0330" alt="img_0330" src="http://www.radak.org/wp-content/gallery/20100213/thumbs/thumbs_img_0330.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-473" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100213/img_0331.jpg" title=" " class="shutterset_set_40" >
								<img title="img_0331" alt="img_0331" src="http://www.radak.org/wp-content/gallery/20100213/thumbs/thumbs_img_0331.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-474" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100213/img_0332.jpg" title=" " class="shutterset_set_40" >
								<img title="img_0332" alt="img_0332" src="http://www.radak.org/wp-content/gallery/20100213/thumbs/thumbs_img_0332.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-475" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100213/img_0333.jpg" title=" " class="shutterset_set_40" >
								<img title="img_0333" alt="img_0333" src="http://www.radak.org/wp-content/gallery/20100213/thumbs/thumbs_img_0333.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-476" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100213/img_0334.jpg" title=" " class="shutterset_set_40" >
								<img title="img_0334" alt="img_0334" src="http://www.radak.org/wp-content/gallery/20100213/thumbs/thumbs_img_0334.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class="ngg-clear">&nbsp;</div> 	
</div>


]]></content:encoded>
			<wfw:commentRss>http://www.radak.org/2010/02/13/kepek-vegyesen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Újabb videó</title>
		<link>http://www.radak.org/2010/02/13/ujabb-video/</link>
		<comments>http://www.radak.org/2010/02/13/ujabb-video/#comments</comments>
		<pubDate>Sat, 13 Feb 2010 12:15:19 +0000</pubDate>
		<dc:creator>lion</dc:creator>
				<category><![CDATA[Sára és Dóra]]></category>

		<guid isPermaLink="false">http://www.radak.org/?p=295</guid>
		<description><![CDATA[Mit talált Sárika (bal oldalt)? ...meglepetés a végén!  

]]></description>
			<content:encoded><![CDATA[<p>Mit talált Sárika (bal oldalt)? ...meglepetés a végén! <img src='http://www.radak.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="280" height="170" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/94H9ACD3E3M&amp;hl=en_US&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="280" height="170" src="http://www.youtube.com/v/94H9ACD3E3M&amp;hl=en_US&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.radak.org/2010/02/13/ujabb-video/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title></title>
		<link>http://www.radak.org/2010/01/27/292/</link>
		<comments>http://www.radak.org/2010/01/27/292/#comments</comments>
		<pubDate>Wed, 27 Jan 2010 20:03:49 +0000</pubDate>
		<dc:creator>lion</dc:creator>
				<category><![CDATA[Sára és Dóra]]></category>

		<guid isPermaLink="false">http://www.radak.org/?p=292</guid>
		<description><![CDATA[

]]></description>
			<content:encoded><![CDATA[
<div class="ngg-galleryoverview" id="ngg-gallery-39-292">


	
	<!-- Thumbnails -->
		
	<div id="ngg-image-444" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100127/img_0572.jpg" title=" " class="shutterset_set_39" >
								<img title="img_0572" alt="img_0572" src="http://www.radak.org/wp-content/gallery/20100127/thumbs/thumbs_img_0572.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-445" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100127/img_0580.jpg" title=" " class="shutterset_set_39" >
								<img title="img_0580" alt="img_0580" src="http://www.radak.org/wp-content/gallery/20100127/thumbs/thumbs_img_0580.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-446" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100127/img_0581.jpg" title=" " class="shutterset_set_39" >
								<img title="img_0581" alt="img_0581" src="http://www.radak.org/wp-content/gallery/20100127/thumbs/thumbs_img_0581.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class="ngg-clear">&nbsp;</div> 	
</div>


<p><object width="280" height="170"><param name="movie" value="http://www.youtube.com/v/QAgfN2x-APk&#038;hl=en_US&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/QAgfN2x-APk&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="280" height="170"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.radak.org/2010/01/27/292/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Negyedévesek</title>
		<link>http://www.radak.org/2010/01/23/negyedevesek/</link>
		<comments>http://www.radak.org/2010/01/23/negyedevesek/#comments</comments>
		<pubDate>Sat, 23 Jan 2010 19:19:46 +0000</pubDate>
		<dc:creator>lion</dc:creator>
				<category><![CDATA[Sára és Dóra]]></category>

		<guid isPermaLink="false">http://www.radak.org/?p=287</guid>
		<description><![CDATA[Három hónaposak a babák

A galéria:
]]></description>
			<content:encoded><![CDATA[<p>Három hónaposak a babák<br />

<a href="http://www.radak.org/wp-content/gallery/20100123/img_0552.jpg" title="" class="shutterset_singlepic429" >
	<img class="ngg-singlepic" src="http://www.radak.org/wp-content/plugins/nextgen-gallery/nggshow.php?pid=429&amp;width=200&amp;height=150&amp;mode=" alt="img_0552" title="img_0552" />
</a>
<br />
<span id="more-287"></span><br />
A galéria:<br />

<div class="ngg-galleryoverview" id="ngg-gallery-38-287">


	
	<!-- Thumbnails -->
		
	<div id="ngg-image-423" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100123/img_0545.jpg" title=" " class="shutterset_set_38" >
								<img title="img_0545" alt="img_0545" src="http://www.radak.org/wp-content/gallery/20100123/thumbs/thumbs_img_0545.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-422" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100123/img_0544.jpg" title=" " class="shutterset_set_38" >
								<img title="img_0544" alt="img_0544" src="http://www.radak.org/wp-content/gallery/20100123/thumbs/thumbs_img_0544.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-421" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100123/img_0541.jpg" title=" " class="shutterset_set_38" >
								<img title="img_0541" alt="img_0541" src="http://www.radak.org/wp-content/gallery/20100123/thumbs/thumbs_img_0541.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-420" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100123/img_0540.jpg" title=" " class="shutterset_set_38" >
								<img title="img_0540" alt="img_0540" src="http://www.radak.org/wp-content/gallery/20100123/thumbs/thumbs_img_0540.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-419" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100123/img_0538.jpg" title=" " class="shutterset_set_38" >
								<img title="img_0538" alt="img_0538" src="http://www.radak.org/wp-content/gallery/20100123/thumbs/thumbs_img_0538.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-424" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100123/img_0546.jpg" title=" " class="shutterset_set_38" >
								<img title="img_0546" alt="img_0546" src="http://www.radak.org/wp-content/gallery/20100123/thumbs/thumbs_img_0546.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-425" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100123/img_0547.jpg" title=" " class="shutterset_set_38" >
								<img title="img_0547" alt="img_0547" src="http://www.radak.org/wp-content/gallery/20100123/thumbs/thumbs_img_0547.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-426" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100123/img_0549.jpg" title=" " class="shutterset_set_38" >
								<img title="img_0549" alt="img_0549" src="http://www.radak.org/wp-content/gallery/20100123/thumbs/thumbs_img_0549.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-427" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100123/img_0550.jpg" title=" " class="shutterset_set_38" >
								<img title="img_0550" alt="img_0550" src="http://www.radak.org/wp-content/gallery/20100123/thumbs/thumbs_img_0550.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-428" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100123/img_0551.jpg" title=" " class="shutterset_set_38" >
								<img title="img_0551" alt="img_0551" src="http://www.radak.org/wp-content/gallery/20100123/thumbs/thumbs_img_0551.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-429" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100123/img_0552.jpg" title=" " class="shutterset_set_38" >
								<img title="img_0552" alt="img_0552" src="http://www.radak.org/wp-content/gallery/20100123/thumbs/thumbs_img_0552.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-430" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100123/img_0553.jpg" title=" " class="shutterset_set_38" >
								<img title="img_0553" alt="img_0553" src="http://www.radak.org/wp-content/gallery/20100123/thumbs/thumbs_img_0553.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-431" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100123/img_0554.jpg" title=" " class="shutterset_set_38" >
								<img title="img_0554" alt="img_0554" src="http://www.radak.org/wp-content/gallery/20100123/thumbs/thumbs_img_0554.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-432" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100123/img_0555.jpg" title=" " class="shutterset_set_38" >
								<img title="img_0555" alt="img_0555" src="http://www.radak.org/wp-content/gallery/20100123/thumbs/thumbs_img_0555.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-433" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100123/img_0556.jpg" title=" " class="shutterset_set_38" >
								<img title="img_0556" alt="img_0556" src="http://www.radak.org/wp-content/gallery/20100123/thumbs/thumbs_img_0556.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-434" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100123/img_0557.jpg" title=" " class="shutterset_set_38" >
								<img title="img_0557" alt="img_0557" src="http://www.radak.org/wp-content/gallery/20100123/thumbs/thumbs_img_0557.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-435" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100123/img_0558.jpg" title=" " class="shutterset_set_38" >
								<img title="img_0558" alt="img_0558" src="http://www.radak.org/wp-content/gallery/20100123/thumbs/thumbs_img_0558.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-436" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100123/img_0559.jpg" title=" " class="shutterset_set_38" >
								<img title="img_0559" alt="img_0559" src="http://www.radak.org/wp-content/gallery/20100123/thumbs/thumbs_img_0559.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-437" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100123/img_0560.jpg" title=" " class="shutterset_set_38" >
								<img title="img_0560" alt="img_0560" src="http://www.radak.org/wp-content/gallery/20100123/thumbs/thumbs_img_0560.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-438" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100123/img_0561.jpg" title=" " class="shutterset_set_38" >
								<img title="img_0561" alt="img_0561" src="http://www.radak.org/wp-content/gallery/20100123/thumbs/thumbs_img_0561.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-439" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100123/img_0567.jpg" title=" " class="shutterset_set_38" >
								<img title="img_0567" alt="img_0567" src="http://www.radak.org/wp-content/gallery/20100123/thumbs/thumbs_img_0567.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-440" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100123/img_0568.jpg" title=" " class="shutterset_set_38" >
								<img title="img_0568" alt="img_0568" src="http://www.radak.org/wp-content/gallery/20100123/thumbs/thumbs_img_0568.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-441" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100123/img_0569.jpg" title=" " class="shutterset_set_38" >
								<img title="img_0569" alt="img_0569" src="http://www.radak.org/wp-content/gallery/20100123/thumbs/thumbs_img_0569.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-442" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100123/img_0570.jpg" title=" " class="shutterset_set_38" >
								<img title="img_0570" alt="img_0570" src="http://www.radak.org/wp-content/gallery/20100123/thumbs/thumbs_img_0570.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-443" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100123/img_0571.jpg" title=" " class="shutterset_set_38" >
								<img title="img_0571" alt="img_0571" src="http://www.radak.org/wp-content/gallery/20100123/thumbs/thumbs_img_0571.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class="ngg-clear">&nbsp;</div> 	
</div>

</p>
]]></content:encoded>
			<wfw:commentRss>http://www.radak.org/2010/01/23/negyedevesek/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Névnap</title>
		<link>http://www.radak.org/2010/01/19/nevnap/</link>
		<comments>http://www.radak.org/2010/01/19/nevnap/#comments</comments>
		<pubDate>Tue, 19 Jan 2010 08:45:56 +0000</pubDate>
		<dc:creator>lion</dc:creator>
				<category><![CDATA[Sára és Dóra]]></category>

		<guid isPermaLink="false">http://www.radak.org/?p=280</guid>
		<description><![CDATA[Na, kinek van ma névnapja?
 Sárikának!  
Hajtás után a galéria...
 
]]></description>
			<content:encoded><![CDATA[<p>Na, kinek van ma névnapja?<br />

<a href="http://www.radak.org/wp-content/gallery/20100119/img_0506.jpg" title="" class="shutterset_singlepic416" >
	<img class="ngg-singlepic" src="http://www.radak.org/wp-content/plugins/nextgen-gallery/nggshow.php?pid=416&amp;width=200&amp;height=150&amp;mode=" alt="img_0506" title="img_0506" />
</a>
<br />
<strong> Sárikának! <img src='http://www.radak.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </strong></p>
<p>Hajtás után a galéria...<br />
<span id="more-280"></span> 
<div class="ngg-galleryoverview" id="ngg-gallery-37-280">


	
	<!-- Thumbnails -->
		
	<div id="ngg-image-411" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100119/img_0495.jpg" title=" " class="shutterset_set_37" >
								<img title="img_0495" alt="img_0495" src="http://www.radak.org/wp-content/gallery/20100119/thumbs/thumbs_img_0495.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-410" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100119/img_0491.jpg" title=" " class="shutterset_set_37" >
								<img title="img_0491" alt="img_0491" src="http://www.radak.org/wp-content/gallery/20100119/thumbs/thumbs_img_0491.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-409" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100119/img_0490.jpg" title=" " class="shutterset_set_37" >
								<img title="img_0490" alt="img_0490" src="http://www.radak.org/wp-content/gallery/20100119/thumbs/thumbs_img_0490.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-408" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100119/img_0488.jpg" title=" " class="shutterset_set_37" >
								<img title="img_0488" alt="img_0488" src="http://www.radak.org/wp-content/gallery/20100119/thumbs/thumbs_img_0488.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-407" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100119/img_0487.jpg" title=" " class="shutterset_set_37" >
								<img title="img_0487" alt="img_0487" src="http://www.radak.org/wp-content/gallery/20100119/thumbs/thumbs_img_0487.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-412" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100119/img_0498.jpg" title=" " class="shutterset_set_37" >
								<img title="img_0498" alt="img_0498" src="http://www.radak.org/wp-content/gallery/20100119/thumbs/thumbs_img_0498.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-413" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100119/img_0499.jpg" title=" " class="shutterset_set_37" >
								<img title="img_0499" alt="img_0499" src="http://www.radak.org/wp-content/gallery/20100119/thumbs/thumbs_img_0499.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-414" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100119/img_0500.jpg" title=" " class="shutterset_set_37" >
								<img title="img_0500" alt="img_0500" src="http://www.radak.org/wp-content/gallery/20100119/thumbs/thumbs_img_0500.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-415" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100119/img_0505.jpg" title=" " class="shutterset_set_37" >
								<img title="img_0505" alt="img_0505" src="http://www.radak.org/wp-content/gallery/20100119/thumbs/thumbs_img_0505.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-416" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100119/img_0506.jpg" title=" " class="shutterset_set_37" >
								<img title="img_0506" alt="img_0506" src="http://www.radak.org/wp-content/gallery/20100119/thumbs/thumbs_img_0506.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-417" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100119/img_0507.jpg" title=" " class="shutterset_set_37" >
								<img title="img_0507" alt="img_0507" src="http://www.radak.org/wp-content/gallery/20100119/thumbs/thumbs_img_0507.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-418" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100119/img_0508.jpg" title=" " class="shutterset_set_37" >
								<img title="img_0508" alt="img_0508" src="http://www.radak.org/wp-content/gallery/20100119/thumbs/thumbs_img_0508.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class="ngg-clear">&nbsp;</div> 	
</div>

</p>
]]></content:encoded>
			<wfw:commentRss>http://www.radak.org/2010/01/19/nevnap/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Újabb vidijó</title>
		<link>http://www.radak.org/2010/01/17/ujabb-vidijo/</link>
		<comments>http://www.radak.org/2010/01/17/ujabb-vidijo/#comments</comments>
		<pubDate>Sun, 17 Jan 2010 19:34:55 +0000</pubDate>
		<dc:creator>lion</dc:creator>
				<category><![CDATA[Sára és Dóra]]></category>

		<guid isPermaLink="false">http://www.radak.org/?p=275</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><object width="280" height="170"><param name="movie" value="http://www.youtube.com/v/kt8fDEPlLqE&#038;hl=en_US&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/kt8fDEPlLqE&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="280" height="170"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.radak.org/2010/01/17/ujabb-vidijo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Új képek visszamenőleg a babákról</title>
		<link>http://www.radak.org/2010/01/10/uj-kepek-visszamenoleg-a-babakrol/</link>
		<comments>http://www.radak.org/2010/01/10/uj-kepek-visszamenoleg-a-babakrol/#comments</comments>
		<pubDate>Sun, 10 Jan 2010 22:37:38 +0000</pubDate>
		<dc:creator>lion</dc:creator>
				<category><![CDATA[Sára és Dóra]]></category>

		<guid isPermaLink="false">http://www.radak.org/?p=267</guid>
		<description><![CDATA[Kikerült két új galéria: az egyik egy 2009 december 22-ei, a másik pedig válogatás nélkül sok napot fed le.

2009 december 22. 
Ez meg össze-vissza, egyben mentettem le: 
]]></description>
			<content:encoded><![CDATA[<p>Kikerült két új galéria: az egyik egy 2009 december 22-ei, a másik pedig válogatás nélkül sok napot fed le.</p>
<p><span id="more-267"></span></p>
<p><strong>2009 december 22. <span style="font-weight: normal;">
<div class="ngg-galleryoverview" id="ngg-gallery-35-267">


	
	<!-- Thumbnails -->
		
	<div id="ngg-image-316" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20091222/100_1845.jpg" title=" " class="shutterset_set_35" >
								<img title="100_1845" alt="100_1845" src="http://www.radak.org/wp-content/gallery/20091222/thumbs/thumbs_100_1845.jpg" width="99" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-315" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20091222/100_1844.jpg" title=" " class="shutterset_set_35" >
								<img title="100_1844" alt="100_1844" src="http://www.radak.org/wp-content/gallery/20091222/thumbs/thumbs_100_1844.jpg" width="99" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-318" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20091222/100_1849.jpg" title=" " class="shutterset_set_35" >
								<img title="100_1849" alt="100_1849" src="http://www.radak.org/wp-content/gallery/20091222/thumbs/thumbs_100_1849.jpg" width="99" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-319" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20091222/100_1850.jpg" title=" " class="shutterset_set_35" >
								<img title="100_1850" alt="100_1850" src="http://www.radak.org/wp-content/gallery/20091222/thumbs/thumbs_100_1850.jpg" width="99" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-320" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20091222/100_1851.jpg" title=" " class="shutterset_set_35" >
								<img title="100_1851" alt="100_1851" src="http://www.radak.org/wp-content/gallery/20091222/thumbs/thumbs_100_1851.jpg" width="99" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-321" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20091222/100_1852.jpg" title=" " class="shutterset_set_35" >
								<img title="100_1852" alt="100_1852" src="http://www.radak.org/wp-content/gallery/20091222/thumbs/thumbs_100_1852.jpg" width="99" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-322" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20091222/100_1854.jpg" title=" " class="shutterset_set_35" >
								<img title="100_1854" alt="100_1854" src="http://www.radak.org/wp-content/gallery/20091222/thumbs/thumbs_100_1854.jpg" width="99" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-323" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20091222/100_1855.jpg" title=" " class="shutterset_set_35" >
								<img title="100_1855" alt="100_1855" src="http://www.radak.org/wp-content/gallery/20091222/thumbs/thumbs_100_1855.jpg" width="99" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-324" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20091222/100_1856.jpg" title=" " class="shutterset_set_35" >
								<img title="100_1856" alt="100_1856" src="http://www.radak.org/wp-content/gallery/20091222/thumbs/thumbs_100_1856.jpg" width="99" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-325" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20091222/100_1857.jpg" title=" " class="shutterset_set_35" >
								<img title="100_1857" alt="100_1857" src="http://www.radak.org/wp-content/gallery/20091222/thumbs/thumbs_100_1857.jpg" width="99" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-326" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20091222/100_1859.jpg" title=" " class="shutterset_set_35" >
								<img title="100_1859" alt="100_1859" src="http://www.radak.org/wp-content/gallery/20091222/thumbs/thumbs_100_1859.jpg" width="99" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-327" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20091222/100_1860.jpg" title=" " class="shutterset_set_35" >
								<img title="100_1860" alt="100_1860" src="http://www.radak.org/wp-content/gallery/20091222/thumbs/thumbs_100_1860.jpg" width="99" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-328" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20091222/100_1861.jpg" title=" " class="shutterset_set_35" >
								<img title="100_1861" alt="100_1861" src="http://www.radak.org/wp-content/gallery/20091222/thumbs/thumbs_100_1861.jpg" width="99" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-329" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20091222/100_1862.jpg" title=" " class="shutterset_set_35" >
								<img title="100_1862" alt="100_1862" src="http://www.radak.org/wp-content/gallery/20091222/thumbs/thumbs_100_1862.jpg" width="99" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-330" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20091222/100_1863.jpg" title=" " class="shutterset_set_35" >
								<img title="100_1863" alt="100_1863" src="http://www.radak.org/wp-content/gallery/20091222/thumbs/thumbs_100_1863.jpg" width="99" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-331" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20091222/100_1864.jpg" title=" " class="shutterset_set_35" >
								<img title="100_1864" alt="100_1864" src="http://www.radak.org/wp-content/gallery/20091222/thumbs/thumbs_100_1864.jpg" width="99" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-332" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20091222/100_1866.jpg" title=" " class="shutterset_set_35" >
								<img title="100_1866" alt="100_1866" src="http://www.radak.org/wp-content/gallery/20091222/thumbs/thumbs_100_1866.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-333" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20091222/100_1867.jpg" title=" " class="shutterset_set_35" >
								<img title="100_1867" alt="100_1867" src="http://www.radak.org/wp-content/gallery/20091222/thumbs/thumbs_100_1867.jpg" width="99" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-334" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20091222/100_1868.jpg" title=" " class="shutterset_set_35" >
								<img title="100_1868" alt="100_1868" src="http://www.radak.org/wp-content/gallery/20091222/thumbs/thumbs_100_1868.jpg" width="99" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-335" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20091222/100_1869.jpg" title=" " class="shutterset_set_35" >
								<img title="100_1869" alt="100_1869" src="http://www.radak.org/wp-content/gallery/20091222/thumbs/thumbs_100_1869.jpg" width="99" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-336" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20091222/100_1871.jpg" title=" " class="shutterset_set_35" >
								<img title="100_1871" alt="100_1871" src="http://www.radak.org/wp-content/gallery/20091222/thumbs/thumbs_100_1871.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-337" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20091222/100_1874.jpg" title=" " class="shutterset_set_35" >
								<img title="100_1874" alt="100_1874" src="http://www.radak.org/wp-content/gallery/20091222/thumbs/thumbs_100_1874.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-338" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20091222/100_1875.jpg" title=" " class="shutterset_set_35" >
								<img title="100_1875" alt="100_1875" src="http://www.radak.org/wp-content/gallery/20091222/thumbs/thumbs_100_1875.jpg" width="99" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-339" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20091222/100_1878.jpg" title=" " class="shutterset_set_35" >
								<img title="100_1878" alt="100_1878" src="http://www.radak.org/wp-content/gallery/20091222/thumbs/thumbs_100_1878.jpg" width="99" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-340" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20091222/100_1880.jpg" title=" " class="shutterset_set_35" >
								<img title="100_1880" alt="100_1880" src="http://www.radak.org/wp-content/gallery/20091222/thumbs/thumbs_100_1880.jpg" width="99" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-341" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20091222/100_1881.jpg" title=" " class="shutterset_set_35" >
								<img title="100_1881" alt="100_1881" src="http://www.radak.org/wp-content/gallery/20091222/thumbs/thumbs_100_1881.jpg" width="99" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-342" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20091222/100_1885.jpg" title=" " class="shutterset_set_35" >
								<img title="100_1885" alt="100_1885" src="http://www.radak.org/wp-content/gallery/20091222/thumbs/thumbs_100_1885.jpg" width="99" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-343" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20091222/100_1888.jpg" title=" " class="shutterset_set_35" >
								<img title="100_1888" alt="100_1888" src="http://www.radak.org/wp-content/gallery/20091222/thumbs/thumbs_100_1888.jpg" width="99" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-344" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20091222/100_1889.jpg" title=" " class="shutterset_set_35" >
								<img title="100_1889" alt="100_1889" src="http://www.radak.org/wp-content/gallery/20091222/thumbs/thumbs_100_1889.jpg" width="99" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-345" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20091222/100_1890.jpg" title=" " class="shutterset_set_35" >
								<img title="100_1890" alt="100_1890" src="http://www.radak.org/wp-content/gallery/20091222/thumbs/thumbs_100_1890.jpg" width="99" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-346" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20091222/100_1891.jpg" title=" " class="shutterset_set_35" >
								<img title="100_1891" alt="100_1891" src="http://www.radak.org/wp-content/gallery/20091222/thumbs/thumbs_100_1891.jpg" width="99" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-347" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20091222/100_1894.jpg" title=" " class="shutterset_set_35" >
								<img title="100_1894" alt="100_1894" src="http://www.radak.org/wp-content/gallery/20091222/thumbs/thumbs_100_1894.jpg" width="99" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-348" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20091222/100_1897.jpg" title=" " class="shutterset_set_35" >
								<img title="100_1897" alt="100_1897" src="http://www.radak.org/wp-content/gallery/20091222/thumbs/thumbs_100_1897.jpg" width="97" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-349" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20091222/100_1898.jpg" title=" " class="shutterset_set_35" >
								<img title="100_1898" alt="100_1898" src="http://www.radak.org/wp-content/gallery/20091222/thumbs/thumbs_100_1898.jpg" width="97" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-350" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20091222/100_1899.jpg" title=" " class="shutterset_set_35" >
								<img title="100_1899" alt="100_1899" src="http://www.radak.org/wp-content/gallery/20091222/thumbs/thumbs_100_1899.jpg" width="97" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-351" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20091222/100_1900.jpg" title=" " class="shutterset_set_35" >
								<img title="100_1900" alt="100_1900" src="http://www.radak.org/wp-content/gallery/20091222/thumbs/thumbs_100_1900.jpg" width="97" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-352" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20091222/100_1901.jpg" title=" " class="shutterset_set_35" >
								<img title="100_1901" alt="100_1901" src="http://www.radak.org/wp-content/gallery/20091222/thumbs/thumbs_100_1901.jpg" width="97" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-353" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20091222/100_1902.jpg" title=" " class="shutterset_set_35" >
								<img title="100_1902" alt="100_1902" src="http://www.radak.org/wp-content/gallery/20091222/thumbs/thumbs_100_1902.jpg" width="97" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-354" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20091222/100_1903.jpg" title=" " class="shutterset_set_35" >
								<img title="100_1903" alt="100_1903" src="http://www.radak.org/wp-content/gallery/20091222/thumbs/thumbs_100_1903.jpg" width="97" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-355" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20091222/100_1904.jpg" title=" " class="shutterset_set_35" >
								<img title="100_1904" alt="100_1904" src="http://www.radak.org/wp-content/gallery/20091222/thumbs/thumbs_100_1904.jpg" width="97" height="75" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class="ngg-clear">&nbsp;</div> 	
</div>

</span></strong></p>
<p><strong>Ez meg össze-vissza, egyben mentettem le:</strong> 
<div class="ngg-galleryoverview" id="ngg-gallery-36-267">


	
	<!-- Thumbnails -->
		
	<div id="ngg-image-358" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/fuji_100110/dscf2514.jpg" title=" " class="shutterset_set_36" >
								<img title="dscf2514" alt="dscf2514" src="http://www.radak.org/wp-content/gallery/fuji_100110/thumbs/thumbs_dscf2514.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-359" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/fuji_100110/dscf2515.jpg" title=" " class="shutterset_set_36" >
								<img title="dscf2515" alt="dscf2515" src="http://www.radak.org/wp-content/gallery/fuji_100110/thumbs/thumbs_dscf2515.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-360" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/fuji_100110/dscf2516.jpg" title=" " class="shutterset_set_36" >
								<img title="dscf2516" alt="dscf2516" src="http://www.radak.org/wp-content/gallery/fuji_100110/thumbs/thumbs_dscf2516.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-361" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/fuji_100110/dscf2517.jpg" title=" " class="shutterset_set_36" >
								<img title="dscf2517" alt="dscf2517" src="http://www.radak.org/wp-content/gallery/fuji_100110/thumbs/thumbs_dscf2517.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-362" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/fuji_100110/dscf2518.jpg" title=" " class="shutterset_set_36" >
								<img title="dscf2518" alt="dscf2518" src="http://www.radak.org/wp-content/gallery/fuji_100110/thumbs/thumbs_dscf2518.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-363" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/fuji_100110/dscf2519.jpg" title=" " class="shutterset_set_36" >
								<img title="dscf2519" alt="dscf2519" src="http://www.radak.org/wp-content/gallery/fuji_100110/thumbs/thumbs_dscf2519.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-364" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/fuji_100110/dscf2520.jpg" title=" " class="shutterset_set_36" >
								<img title="dscf2520" alt="dscf2520" src="http://www.radak.org/wp-content/gallery/fuji_100110/thumbs/thumbs_dscf2520.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-365" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/fuji_100110/dscf2521.jpg" title=" " class="shutterset_set_36" >
								<img title="dscf2521" alt="dscf2521" src="http://www.radak.org/wp-content/gallery/fuji_100110/thumbs/thumbs_dscf2521.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-366" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/fuji_100110/dscf2522.jpg" title=" " class="shutterset_set_36" >
								<img title="dscf2522" alt="dscf2522" src="http://www.radak.org/wp-content/gallery/fuji_100110/thumbs/thumbs_dscf2522.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-367" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/fuji_100110/dscf2523.jpg" title=" " class="shutterset_set_36" >
								<img title="dscf2523" alt="dscf2523" src="http://www.radak.org/wp-content/gallery/fuji_100110/thumbs/thumbs_dscf2523.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-368" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/fuji_100110/dscf2524.jpg" title=" " class="shutterset_set_36" >
								<img title="dscf2524" alt="dscf2524" src="http://www.radak.org/wp-content/gallery/fuji_100110/thumbs/thumbs_dscf2524.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-369" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/fuji_100110/dscf2525.jpg" title=" " class="shutterset_set_36" >
								<img title="dscf2525" alt="dscf2525" src="http://www.radak.org/wp-content/gallery/fuji_100110/thumbs/thumbs_dscf2525.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-370" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/fuji_100110/dscf2526.jpg" title=" " class="shutterset_set_36" >
								<img title="dscf2526" alt="dscf2526" src="http://www.radak.org/wp-content/gallery/fuji_100110/thumbs/thumbs_dscf2526.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-371" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/fuji_100110/dscf2527.jpg" title=" " class="shutterset_set_36" >
								<img title="dscf2527" alt="dscf2527" src="http://www.radak.org/wp-content/gallery/fuji_100110/thumbs/thumbs_dscf2527.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-372" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/fuji_100110/dscf2528.jpg" title=" " class="shutterset_set_36" >
								<img title="dscf2528" alt="dscf2528" src="http://www.radak.org/wp-content/gallery/fuji_100110/thumbs/thumbs_dscf2528.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-373" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/fuji_100110/dscf2529.jpg" title=" " class="shutterset_set_36" >
								<img title="dscf2529" alt="dscf2529" src="http://www.radak.org/wp-content/gallery/fuji_100110/thumbs/thumbs_dscf2529.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-374" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/fuji_100110/dscf2530.jpg" title=" " class="shutterset_set_36" >
								<img title="dscf2530" alt="dscf2530" src="http://www.radak.org/wp-content/gallery/fuji_100110/thumbs/thumbs_dscf2530.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-375" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/fuji_100110/dscf2531.jpg" title=" " class="shutterset_set_36" >
								<img title="dscf2531" alt="dscf2531" src="http://www.radak.org/wp-content/gallery/fuji_100110/thumbs/thumbs_dscf2531.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-376" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/fuji_100110/dscf2532.jpg" title=" " class="shutterset_set_36" >
								<img title="dscf2532" alt="dscf2532" src="http://www.radak.org/wp-content/gallery/fuji_100110/thumbs/thumbs_dscf2532.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-377" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/fuji_100110/dscf2533.jpg" title=" " class="shutterset_set_36" >
								<img title="dscf2533" alt="dscf2533" src="http://www.radak.org/wp-content/gallery/fuji_100110/thumbs/thumbs_dscf2533.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-378" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/fuji_100110/dscf2536.jpg" title=" " class="shutterset_set_36" >
								<img title="dscf2536" alt="dscf2536" src="http://www.radak.org/wp-content/gallery/fuji_100110/thumbs/thumbs_dscf2536.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-379" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/fuji_100110/dscf2537.jpg" title=" " class="shutterset_set_36" >
								<img title="dscf2537" alt="dscf2537" src="http://www.radak.org/wp-content/gallery/fuji_100110/thumbs/thumbs_dscf2537.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-380" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/fuji_100110/dscf2538.jpg" title=" " class="shutterset_set_36" >
								<img title="dscf2538" alt="dscf2538" src="http://www.radak.org/wp-content/gallery/fuji_100110/thumbs/thumbs_dscf2538.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-381" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/fuji_100110/dscf2539.jpg" title=" " class="shutterset_set_36" >
								<img title="dscf2539" alt="dscf2539" src="http://www.radak.org/wp-content/gallery/fuji_100110/thumbs/thumbs_dscf2539.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-382" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/fuji_100110/dscf2540.jpg" title=" " class="shutterset_set_36" >
								<img title="dscf2540" alt="dscf2540" src="http://www.radak.org/wp-content/gallery/fuji_100110/thumbs/thumbs_dscf2540.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-383" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/fuji_100110/dscf2541.jpg" title=" " class="shutterset_set_36" >
								<img title="dscf2541" alt="dscf2541" src="http://www.radak.org/wp-content/gallery/fuji_100110/thumbs/thumbs_dscf2541.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-384" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/fuji_100110/dscf2542.jpg" title=" " class="shutterset_set_36" >
								<img title="dscf2542" alt="dscf2542" src="http://www.radak.org/wp-content/gallery/fuji_100110/thumbs/thumbs_dscf2542.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-385" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/fuji_100110/dscf2543.jpg" title=" " class="shutterset_set_36" >
								<img title="dscf2543" alt="dscf2543" src="http://www.radak.org/wp-content/gallery/fuji_100110/thumbs/thumbs_dscf2543.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-386" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/fuji_100110/dscf2544.jpg" title=" " class="shutterset_set_36" >
								<img title="dscf2544" alt="dscf2544" src="http://www.radak.org/wp-content/gallery/fuji_100110/thumbs/thumbs_dscf2544.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-387" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/fuji_100110/dscf2545.jpg" title=" " class="shutterset_set_36" >
								<img title="dscf2545" alt="dscf2545" src="http://www.radak.org/wp-content/gallery/fuji_100110/thumbs/thumbs_dscf2545.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-388" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/fuji_100110/dscf2546.jpg" title=" " class="shutterset_set_36" >
								<img title="dscf2546" alt="dscf2546" src="http://www.radak.org/wp-content/gallery/fuji_100110/thumbs/thumbs_dscf2546.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-389" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/fuji_100110/dscf2547.jpg" title=" " class="shutterset_set_36" >
								<img title="dscf2547" alt="dscf2547" src="http://www.radak.org/wp-content/gallery/fuji_100110/thumbs/thumbs_dscf2547.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-391" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/fuji_100110/dscf2551.jpg" title=" " class="shutterset_set_36" >
								<img title="dscf2551" alt="dscf2551" src="http://www.radak.org/wp-content/gallery/fuji_100110/thumbs/thumbs_dscf2551.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-392" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/fuji_100110/dscf2557.jpg" title=" " class="shutterset_set_36" >
								<img title="dscf2557" alt="dscf2557" src="http://www.radak.org/wp-content/gallery/fuji_100110/thumbs/thumbs_dscf2557.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-393" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/fuji_100110/dscf2558.jpg" title=" " class="shutterset_set_36" >
								<img title="dscf2558" alt="dscf2558" src="http://www.radak.org/wp-content/gallery/fuji_100110/thumbs/thumbs_dscf2558.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-394" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/fuji_100110/dscf2560.jpg" title=" " class="shutterset_set_36" >
								<img title="dscf2560" alt="dscf2560" src="http://www.radak.org/wp-content/gallery/fuji_100110/thumbs/thumbs_dscf2560.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-399" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/fuji_100110/dscf2565.jpg" title=" " class="shutterset_set_36" >
								<img title="dscf2565" alt="dscf2565" src="http://www.radak.org/wp-content/gallery/fuji_100110/thumbs/thumbs_dscf2565.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-400" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/fuji_100110/dscf2566.jpg" title=" " class="shutterset_set_36" >
								<img title="dscf2566" alt="dscf2566" src="http://www.radak.org/wp-content/gallery/fuji_100110/thumbs/thumbs_dscf2566.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-401" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/fuji_100110/dscf2567.jpg" title=" " class="shutterset_set_36" >
								<img title="dscf2567" alt="dscf2567" src="http://www.radak.org/wp-content/gallery/fuji_100110/thumbs/thumbs_dscf2567.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-402" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/fuji_100110/dscf2568.jpg" title=" " class="shutterset_set_36" >
								<img title="dscf2568" alt="dscf2568" src="http://www.radak.org/wp-content/gallery/fuji_100110/thumbs/thumbs_dscf2568.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-403" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/fuji_100110/dscf2569.jpg" title=" " class="shutterset_set_36" >
								<img title="dscf2569" alt="dscf2569" src="http://www.radak.org/wp-content/gallery/fuji_100110/thumbs/thumbs_dscf2569.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-406" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/fuji_100110/dscf2572.jpg" title=" " class="shutterset_set_36" >
								<img title="dscf2572" alt="dscf2572" src="http://www.radak.org/wp-content/gallery/fuji_100110/thumbs/thumbs_dscf2572.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class="ngg-clear">&nbsp;</div> 	
</div>

</p>
]]></content:encoded>
			<wfw:commentRss>http://www.radak.org/2010/01/10/uj-kepek-visszamenoleg-a-babakrol/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Iker videók</title>
		<link>http://www.radak.org/2010/01/07/iker-videok/</link>
		<comments>http://www.radak.org/2010/01/07/iker-videok/#comments</comments>
		<pubDate>Thu, 07 Jan 2010 20:04:09 +0000</pubDate>
		<dc:creator>lion</dc:creator>
				<category><![CDATA[Sára és Dóra]]></category>

		<guid isPermaLink="false">http://www.radak.org/?p=213</guid>
		<description><![CDATA[Végre van pár videó a lányokról!  
A törpék fűrdésre várnak


Dóri fűrdik

Sári fűrdik

]]></description>
			<content:encoded><![CDATA[<p>Végre van pár videó a lányokról! <img src='http://www.radak.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><strong>A törpék fűrdésre várnak</strong><br />
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="280" height="170" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/OoezCEp1ssg&amp;hl=en_US&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="280" height="170" src="http://www.youtube.com/v/OoezCEp1ssg&amp;hl=en_US&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object><br />
<span id="more-213"></span><br />
<strong>Dóri fűrdik</strong><br />
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="280" height="170" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/blUpKprTKGg&amp;hl=en_US&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="280" height="170" src="http://www.youtube.com/v/blUpKprTKGg&amp;hl=en_US&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p><strong>Sári fűrdik</strong><br />
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="280" height="170" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/-TwFGQg0YX0&amp;hl=en_US&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="280" height="170" src="http://www.youtube.com/v/-TwFGQg0YX0&amp;hl=en_US&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.radak.org/2010/01/07/iker-videok/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Az ikrek képei</title>
		<link>http://www.radak.org/2010/01/07/lanyok-kepei/</link>
		<comments>http://www.radak.org/2010/01/07/lanyok-kepei/#comments</comments>
		<pubDate>Thu, 07 Jan 2010 09:32:13 +0000</pubDate>
		<dc:creator>lion</dc:creator>
				<category><![CDATA[Sára és Dóra]]></category>

		<guid isPermaLink="false">http://blog.radak.org/?p=194</guid>
		<description><![CDATA[Kikerült néhany új kép...

2009/12/30 
2010/01/02 
2010/01/05 
2010/01/07 
]]></description>
			<content:encoded><![CDATA[<p>Kikerült néhany új kép...</p>
<p><span id="more-194"></span></p>
<p><strong>2009/12/30 </strong>
<div class="ngg-galleryoverview" id="ngg-gallery-30-194">


	
	<!-- Thumbnails -->
		
	<div id="ngg-image-295" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20091230/img_0450.jpg" title=" " class="shutterset_set_30" >
								<img title="img_0450" alt="img_0450" src="http://www.radak.org/wp-content/gallery/20091230/thumbs/thumbs_img_0450.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-296" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20091230/img_0451.jpg" title=" " class="shutterset_set_30" >
								<img title="img_0451" alt="img_0451" src="http://www.radak.org/wp-content/gallery/20091230/thumbs/thumbs_img_0451.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-297" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20091230/img_0452.jpg" title=" " class="shutterset_set_30" >
								<img title="img_0452" alt="img_0452" src="http://www.radak.org/wp-content/gallery/20091230/thumbs/thumbs_img_0452.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class="ngg-clear">&nbsp;</div> 	
</div>

</p>
<p><strong>2010/01/02 </strong>
<div class="ngg-galleryoverview" id="ngg-gallery-32-194">


	
	<!-- Thumbnails -->
		
	<div id="ngg-image-298" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100102/img_0453.jpg" title=" " class="shutterset_set_32" >
								<img title="img_0453" alt="img_0453" src="http://www.radak.org/wp-content/gallery/20100102/thumbs/thumbs_img_0453.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-299" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100102/img_0455.jpg" title=" " class="shutterset_set_32" >
								<img title="img_0455" alt="img_0455" src="http://www.radak.org/wp-content/gallery/20100102/thumbs/thumbs_img_0455.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-300" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100102/img_0456.jpg" title=" " class="shutterset_set_32" >
								<img title="img_0456" alt="img_0456" src="http://www.radak.org/wp-content/gallery/20100102/thumbs/thumbs_img_0456.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-301" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100102/img_0457.jpg" title=" " class="shutterset_set_32" >
								<img title="img_0457" alt="img_0457" src="http://www.radak.org/wp-content/gallery/20100102/thumbs/thumbs_img_0457.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-302" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100102/img_0458.jpg" title=" " class="shutterset_set_32" >
								<img title="img_0458" alt="img_0458" src="http://www.radak.org/wp-content/gallery/20100102/thumbs/thumbs_img_0458.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class="ngg-clear">&nbsp;</div> 	
</div>

</p>
<p><strong>2010/01/05 </strong>
<div class="ngg-galleryoverview" id="ngg-gallery-33-194">


	
	<!-- Thumbnails -->
		
	<div id="ngg-image-303" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100105/img_0460.jpg" title=" " class="shutterset_set_33" >
								<img title="img_0460" alt="img_0460" src="http://www.radak.org/wp-content/gallery/20100105/thumbs/thumbs_img_0460.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-304" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100105/img_0461.jpg" title=" " class="shutterset_set_33" >
								<img title="img_0461" alt="img_0461" src="http://www.radak.org/wp-content/gallery/20100105/thumbs/thumbs_img_0461.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-305" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100105/img_0462.jpg" title=" " class="shutterset_set_33" >
								<img title="img_0462" alt="img_0462" src="http://www.radak.org/wp-content/gallery/20100105/thumbs/thumbs_img_0462.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-306" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100105/img_0463.jpg" title=" " class="shutterset_set_33" >
								<img title="img_0463" alt="img_0463" src="http://www.radak.org/wp-content/gallery/20100105/thumbs/thumbs_img_0463.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-307" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100105/img_0464.jpg" title=" " class="shutterset_set_33" >
								<img title="img_0464" alt="img_0464" src="http://www.radak.org/wp-content/gallery/20100105/thumbs/thumbs_img_0464.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-308" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100105/img_0465.jpg" title=" " class="shutterset_set_33" >
								<img title="img_0465" alt="img_0465" src="http://www.radak.org/wp-content/gallery/20100105/thumbs/thumbs_img_0465.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-309" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100105/img_0466.jpg" title=" " class="shutterset_set_33" >
								<img title="img_0466" alt="img_0466" src="http://www.radak.org/wp-content/gallery/20100105/thumbs/thumbs_img_0466.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-310" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100105/img_0467.jpg" title=" " class="shutterset_set_33" >
								<img title="img_0467" alt="img_0467" src="http://www.radak.org/wp-content/gallery/20100105/thumbs/thumbs_img_0467.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class="ngg-clear">&nbsp;</div> 	
</div>

</p>
<p><strong>2010/01/07 </strong>
<div class="ngg-galleryoverview" id="ngg-gallery-34-194">


	
	<!-- Thumbnails -->
		
	<div id="ngg-image-311" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100107/img_0468.jpg" title=" " class="shutterset_set_34" >
								<img title="img_0468" alt="img_0468" src="http://www.radak.org/wp-content/gallery/20100107/thumbs/thumbs_img_0468.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-312" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100107/img_0469.jpg" title=" " class="shutterset_set_34" >
								<img title="img_0469" alt="img_0469" src="http://www.radak.org/wp-content/gallery/20100107/thumbs/thumbs_img_0469.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-313" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100107/img_0470.jpg" title=" " class="shutterset_set_34" >
								<img title="img_0470" alt="img_0470" src="http://www.radak.org/wp-content/gallery/20100107/thumbs/thumbs_img_0470.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-314" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.radak.org/wp-content/gallery/20100107/img_0471.jpg" title=" " class="shutterset_set_34" >
								<img title="img_0471" alt="img_0471" src="http://www.radak.org/wp-content/gallery/20100107/thumbs/thumbs_img_0471.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class="ngg-clear">&nbsp;</div> 	
</div>

</p>
]]></content:encoded>
			<wfw:commentRss>http://www.radak.org/2010/01/07/lanyok-kepei/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
