// JavaScript Document
// smoothmenu
ddsmoothmenu.init({
mainmenuid: "menu1", 
//Menu DIV id
//orientation: 'h',
orientation: 'v', 
//Horizontal or vertical menu: Set to "h" or "v"
classname: 'ddsmoothmenu-v', 
//classname: 'ddsmoothmenu',
//class added to menu's outer DIV
//customtheme: ["#FFFFFF", "#333333"],
customtheme: ["#323232", "#333333"],
contentsource: "markup" 
//"markup" or ["container_id", "path_to_menu_file"]
})
//----

// lightbox
$(function() {
	// Use this example, or...
	$('a[@rel*=lightbox]').lightBox(); 
// Select all links that contains lightbox in the attribute rel
	// This, or...
//	$('#gallery a').lightBox(); 
// Select all links in object with gallery ID
	// This, or...
//	$('a.lightbox').lightBox(); 
// Select all links with lightbox class
	// This, or...
//	$('a').lightBox(); 
// Select all links in the page
	
// ... The possibility are many. 
//Use your creative or choose one in the examples above
})
//----

// smoothgallery
function startGallery() {
var myGallery = new gallery($('myGallery'), {
timed: true,
delay: 3000,
showArrows: false,
showInfopane: false,
embedLinks: false,
//defaultTransition: "fadeslideleft",
showCarousel: false
});
}
window.addEvent('domready', startGallery);
//----
