$(document).ready(function(){
						   
	InitDestaque();
	InitLancamentos();
	
});


/* *********************************************************************
 * DESTAQUES
 * *********************************************************************/
 
function InitDestaque () {

// ad
	$tabs = jQuery("#tab > ul")
//	.tabs({ fx: [null, { width: 'show' }] })
	.tabs({ fx: { opacity: 'toggle', duration: 'fast' } })
//	.tabs({ fx: { width: 'toggle',  opacity: 'toggle',  duration: 'fast' } })
//	.tabs({ fx: { width: 'toggle',  opacity: 'toggle',  duration: 'fast' } })	
  
	.tabs("rotate", 8000)
	.parent()
	.mouseover(function (){jQuery(this).find("> ul").tabs("rotate", null)})
	.mouseout(function (){jQuery(this).find("> ul").tabs("rotate", 8000)});

};

/* *********************************************************************
 * LANÇAMENTOS
 * *********************************************************************/

function InitLancamentos () {

$("#produtos-slider").easySlider({
	auto: true,
	continuous: true,
	nextId: "slider1next",
	prevId: "slider1prev"

});

};
