	
		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: 'destroyed-kitchen.jpg',
					caption: 'Regular maintenance of your kitchen exhaust system keeps you in business.'
				},
				{
					image: 'main.jpg',
					caption: 'Uni-Serve U.S.A. - National Kitchen Exhaust Hood Cleaner’s Cooperative'
				},
				{
					image: 'Kitchen-1.jpg',
					caption: 'The best source for Kitchen Exhaust Hood Cleaning in the industry.'
				},
				{
					image: 'before-after.jpg',
					caption: 'We provide before and after documentation of your project.'
				},
				{
					image: 'destroyed-kitchen.jpg',
					caption: 'Regular maintenance of a restaurant’s kitchen exhaust system is one of the primary defen.'
				},
			];
			
			// option 2
			// var slides = $$('#blinds img');

			$('blinds').floom(slides, {
				slidesBase: 'slides/',
				sliceFxIn: {
					top: 20
				}
			});

			
		});
