/* CYCLE */
$(function() {
    $('#banner').cycle();
});

/* New Build Cycle */

$(function() {
    $('#gallery-scroll').cycle();
});

/* Services Cycle */

$(function() {
    $('#services-main').cycle({
		fx:     'fade',
        speed:  1000,
        timeout: 12000,
	
	});
});

/* MENU FUNCTION */
function mainmenu(){
$(" ul#products ul").css({display: "none"}); // Opera Fix
$(" ul#products li").hover(function(){
        $(this).find('ul:first').css({visibility: "visible",display: "none"}).show(200);
        },function(){
        $(this).find('ul:first').css({visibility: "hidden"});
        });
};



$(document).ready(function()
{
	mainmenu();
	$("#dreamcatcher-video").click(function() {
                 $.fancybox({
                  'padding'             : 0,
                  'autoScale'   		: false,
                  'transitionIn'        : 'elastic',
                  'transitionOut'       : 'elastic',
                  'title'               : this.title,
                  'width'               : 680,
                  'height'              : 495,
                  'href'                : this.href = this.href.replace(new RegExp("watch\\?v=", "i"), 'v/') + '&autoplay=1',
                  'type'                : 'swf',    // <--add a comma here
                  'swf'					: {
				  'allowfullscreen'		: 'true'
				  }
                  });
                 return false;
            });
	

});




