//General Stuff
$(document).ready(function() {
	//Activamos el datapicker
	if( $( ".datapicker" ).length ){
		$( ".datapicker" ).datepicker();
	}
	
	if( $('.topbar').length ){
		$('.topbar').dropdown();
	}
	if( $('#field').length){
		if( availableTags.length ) {
			$( "#field" ).autocomplete({
				source: availableTags
			});
		}
		
	}
});


