// JavaScript Document
ddsmoothmenu.init({
	mainmenuid: "smoothmenu1", //menu DIV id
	orientation: 'h', //Horizontal or vertical menu: Set to "h" or "v"
	classname: 'ddsmoothmenu', //class added to menu's outer DIV
	//customtheme: ["", ""],
	contentsource: "markup" //"markup" or ["container_id", "path_to_menu_file"]
})

function arranja (elmclass) {//re-posicionamento dos itens nas pags de categoria
	var altura= 0;
	jQuery.each(jQuery(elmclass), function(e, v){altura= Math.max(altura, jQuery(this).height());})
	jQuery.each(jQuery(elmclass), function(e, v){jQuery(this).height(altura);})
}
	$(document).ready(function(){	
// arranja item
        arranja('.item');
// slider
		jQuery("#slider").easySlider({
			auto: true,
			continuous: true,
			numeric: true
		});
    });	
