function cl(arg){
	console.log(arg);
}

$(document).ready(function(){
	$(document).pngFix();
	if ($("#header-slider").length > 0) {
		var hsCycleSet= { fx: "fade", timeout:4000 , cleartype:true, cssBefore:{backgroundColor:"transparent"},cssAfter:{backgroundColor:"transparent"}};
		$("#header-slider").cycle(hsCycleSet);
	}
	if ($("#menu-container").length > 0) {
		var miCycleSet = { fx: 'scrollHorz', timeout:8000, speed:2000, next:"#arrow-right", prev:"#arrow-left"	}
		$("#menu-container").cycle(miCycleSet);
	}
});

