$(function(){
	// rollover
	jQuery('.imgover').each(function(){
		this.osrc = jQuery(this).attr('src');
		this.rollover = new Image();
		this.rollover.src = this.osrc.replace(/(\.gif|\.jpg|\.png)/, "_o$1");
	}).hover(function(){
		jQuery(this).attr('src',this.rollover.src);
	},function(){
		jQuery(this).attr('src',this.osrc);
	});
	// scroll
	//jQuery('a[@href^=#]').click(function() {
	//	var $t = jQuery(this.hash);
	//	if (this.hash.length > 1 && jQueryt.size()) {
	//		jQuery.scrollTo($t, 400);
	//		return false;
	//	}
//	});
});

ddsmoothmenu.init({
	mainmenuid: "Navigation", //menu DIV id
	orientation: 'h', //Horizontal or vertical menu: Set to "h" or "v"
	classname: 'Navigation clearfix', //class added to menu's outer DIV
	//customtheme: ["#1c5a80", "#18374a"],
	contentsource: "markup" //"markup" or ["container_id", "path_to_menu_file"]
})
