var xoxo = cprefill;
var oxox = tprefill;
$(document).ready(function(){
	var cprefill = xoxo;
	var tprefill = oxox;
	if($('#slide_me').attr('id')){
		$('#slide_me').slide_me({
			'out_option' : 'down',
			'in_option' : 'down',
			'pause' : 5000,
			'speed' : 2000,
			'transparent' : 'no',
			'width' : 930,
			'height' : 199,
			'transition' : 'slide'
		});
	}

	if ($("#category-select").length){
		if (typeof(cprefill) === "undefined")
			var cprefill = false;
		$("#category-select").autoSuggest("ajax/categoryList.php", {
			minChars: 2,
			matchCase: false,
			searchObjProps: "name",
			selectedItemProp: "name",
			selectedValuesProp: "id",
			asHtmlID: "category",
			selectionLimit: 1,
			neverSubmit:true,
			preFill: cprefill
		});
	}

	if ($("#tags-select").length){
		if (typeof(tprefill) === "undefined")
			var tprefill = false;
		$("#tags-select").autoSuggest("ajax/tagsList.php", {
			minChars: 2,
			matchCase: false,
			searchObjProps: "name",
			selectedItemProp: "name",
			selectedValuesProp: "id",
			asHtmlID: "tags",
			neverSubmit: true,
			preFill: tprefill
		});
	}
});
