	
		jQuery.noConflict();

		jQuery(document).ready(function($){
		$(" #navigation ul ").css({display: "none"}); // Opera Fix
		$(" #navigation li ").hover(function(){
				$(this).find('ul:first').css({visibility: "visible",display: "none"}).slideDown(400);
				},function(){
				$(this).find('ul:first').css({visibility: "hidden"});
				});
				
				
			$("a[rel^='prettyPhoto']").prettyPhoto({
			theme: 'dark_rounded'
			});
			
			$("#switch").click(function(){
				$("#portfolio").hide().children("li").toggleClass("detailed");
				$("#portfolio").fadeIn();
			});
			
			$(".portfolio-item").hover(function(){
			$(this).children("a").children(".zoom").fadeIn("fast");
			},function(){
			$(this).children("a").children(".zoom").fadeOut("fast");
			});
			
		});
	
		window.addEvent('domready', function(e) {	
			
			// option 1		
			var slides = [
				{
					image: 'nature-photo0.jpg',
					caption: 'Wassergraben von Angkor Thom - KAMBODSCHA'
				},
				{
					image: 'nature-photo1.jpg',
					caption: 'Lotusfelder und Karstberge nahe Kampong Trach - KAMBODSCHA'
				},
				{
					image: 'nature-photo2.jpg',
					caption: 'Klosterburg von  Punakha - BHUTAN'
				},
				{
					image: 'nature-photo3.jpg',
					caption: 'Novizen im Kloster von Paro - BHUTAN'
				},
				{
					image: 'nature-photo4.jpg',
					caption: 'Laboris nisi ut aliquip ex ea commodo consequat'
				}
			];
			
			// option 2
			// var slides = $$('#blinds img');

			$('blinds').floom(slides, {
				slidesBase: 'slides/',
				sliceFxIn: {
					top: 20
				}
			});

			
		});
